Note
Go to the end to download the full example code.
Sink integration test problems#
This example shows how to use the sink integration test problems.
8 import numpy as np
9
10 import shamrock
Use shamrock documentation style for matplotlib
14 shamrock.matplotlib.set_shamrock_mpl_style()
Define the unit system
19 si = shamrock.UnitSystem()
20 sicte = shamrock.Constants(si)
21 codeu = shamrock.UnitSystem(
22 unit_time=sicte.year(),
23 unit_length=sicte.au(),
24 unit_mass=sicte.sol_mass(),
25 )
26 ucte = shamrock.Constants(codeu)
27 G = ucte.G()
Build the SPH model with the sink particles
32 def build_sink_sph_model(
33 positions,
34 velocities,
35 masses,
36 accretion_radii,
37 box_extent,
38 eta_sink=1,
39 cfl_force=0.1,
40 cfl_cour=0.1,
41 ):
42 ctx = shamrock.Context()
43 ctx.pdata_layout_new()
44
45 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M4")
46
47 # Allow experimental features (required for self-gravity)
48 shamrock.enable_experimental_features()
49
50 cfg = model.gen_default_config()
51 # Disable direct self-gravity in this simple example; direct mode requires
52 # a single-patch setup which is not prepared here.
53 cfg.set_self_gravity_none()
54 cfg.set_artif_viscosity_Constant(alpha_u=1.0, alpha_AV=1.0, beta_AV=2.0)
55 cfg.set_particle_mass(1e-6)
56 cfg.set_eos_isothermal(1.0)
57 cfg.set_show_cfl_detail(True)
58 cfg.set_eta_sink(eta_sink)
59 cfg.set_cfl_force(cfl_force)
60 cfg.set_cfl_cour(cfl_cour)
61 # Set code units so warnings about unit system disappear
62 cfg.set_units(codeu)
63
64 model.set_solver_config(cfg)
65
66 # Initialise the scheduler before adding sinks
67 model.init_scheduler(int(1e7), 1)
68
69 for position, velocity, mass, accretion_radius in zip(
70 positions, velocities, masses, accretion_radii
71 ):
72 model.add_sink(mass, tuple(position), tuple(velocity), accretion_radius)
73
74 ext = box_extent
75 bmin = (-ext, -ext, -ext)
76 bmax = (ext, ext, ext)
77 model.resize_simulation_box(bmin, bmax)
78
79 return ctx, model
Extract sink positions from the model
84 def get_sink_positions(model):
85 sinks = model.get_sinks()
86 positions = [tuple(sink["pos"]) for sink in sinks]
87 velocities = [tuple(sink["velocity"]) for sink in sinks]
88 return positions, velocities
92 def correct_sink_velocities_zero_momentum(velocities, masses):
93 """Subtract center-of-mass velocity so total momentum vanishes."""
94 masses = np.asarray(masses)
95 vels = np.asarray(velocities)
96 v_com = np.sum(masses[:, np.newaxis] * vels, axis=0) / np.sum(masses)
97 return [tuple(v - v_com) for v in vels]
Run a simple orbit evolution and collect sink snapshots
102 def run_sim(model, max_time, use_dt=None):
103 """Evolve binary orbit until max_time"""
104 snapshots = []
105 current_time = 0.0
106
107 # Print initial conditions
108 initial_sinks = model.get_sinks()
109 print("\n=== INITIAL CONDITIONS ===")
110 for i, sink in enumerate(initial_sinks):
111 print(f"Sink {i + 1}: pos={sink['pos']}, vel={sink['velocity']}, mass={sink['mass']}")
112 print()
113
114 while current_time < max_time:
115 if use_dt is None:
116 model.timestep()
117 else:
118 model.evolve_once_override_time(current_time + use_dt, use_dt)
119 current_time = model.get_time()
120
121 positions, velocities = get_sink_positions(model)
122
123 snapshots.append(
124 {
125 "time": current_time,
126 "positions": positions,
127 "velocities": velocities,
128 }
129 )
130
131 return snapshots
Plot complete orbital trajectories
136 def plot_orbit_trajectory(snapshots, suptitle):
137 import matplotlib.pyplot as plt
138
139 sinks_positions = np.array([snap["positions"] for snap in snapshots])
140
141 nstep, nsink, ndim = sinks_positions.shape
142
143 print(sinks_positions.shape)
144
145 # Extract trajectories for both sinks
146 sink2_positions = np.array([snap["positions"][1] for snap in snapshots])
147
148 fig = plt.figure(figsize=(12, 5))
149 fig.suptitle(suptitle)
150
151 # 3D plot
152 ax3d = fig.add_subplot(121, projection="3d")
153
154 for isink in range(nsink):
155 ax3d.plot(
156 sinks_positions[:, isink, 0],
157 sinks_positions[:, isink, 1],
158 sinks_positions[:, isink, 2],
159 "o-",
160 label=f"Sink {isink + 1}",
161 markersize=3,
162 linewidth=1,
163 )
164 ax3d.set_xlabel("x (AU)")
165 ax3d.set_ylabel("y (AU)")
166 ax3d.set_zlabel("z (AU)")
167 ax3d.set_title("3D Orbit")
168 ax3d.legend()
169 ax3d.set_aspect("equal")
170
171 # 2D plot (xy plane)
172 ax2d = fig.add_subplot(122)
173
174 for isink in range(nsink):
175 ax2d.plot(
176 sinks_positions[:, isink, 0],
177 sinks_positions[:, isink, 1],
178 "o-",
179 label=f"Sink {isink + 1}",
180 markersize=1,
181 linewidth=1,
182 )
183
184 ax2d.set_xlabel("x (AU)")
185 ax2d.set_ylabel("y (AU)")
186 ax2d.set_title("Orbit (xy plane)")
187 ax2d.legend()
188 ax2d.set_aspect("equal")
189 ax2d.grid(True, alpha=0.3)
190
191 fig.tight_layout()
192 plt.show()
Circular orbit
197 m1 = 1.0
198 m2 = 1e-4
199 a = 1.0
200 _x1, _x2, _v1, _v2 = shamrock.phys.get_binary_rotated(
201 m1=1.0, m2=m2, a=a, e=0.0, nu=0.0, G=G, roll=0.0, pitch=0.0, yaw=0.0
202 )
203 ctx, model = build_sink_sph_model(
204 positions=[_x1, _x2],
205 velocities=[_v1, _v2],
206 masses=[m1, m2],
207 accretion_radii=[1, 1],
208 box_extent=3,
209 eta_sink=0.5,
210 )
211 snapshots = run_sim(model, 10, use_dt=None)
212 plot_orbit_trajectory(snapshots, "Circular orbit")

=== INITIAL CONDITIONS ===
Sink 1: pos=(-9.999000099990002e-05, 0.0, 0.0), vel=(0.0, -0.0006282848210898188, 0.0), mass=1.0
Sink 2: pos=(0.9999000099990001, 0.0, 0.0), vel=(0.0, 6.2828482108981865, 0.0), mass=0.0001
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 30.36 us (3.6%)
patch tree reduce : 902.00 ns (0.1%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 798.37 us (94.1%)
LB move op cnt : 0
LB apply : 12.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-05 |
+-----------+-----------+
Info: cfl dt = 7.957776244022027e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.759e-03 | 1.4% | 0.8% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0, dt = 7.957776244022027e-05 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (0.9%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 316.11 us (97.1%)
LB move op cnt : 0
LB apply : 1.77 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027056439229675216 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.586e-03 | 0.4% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 180.65417456059367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.957776244022027e-05, dt = 0.0027056439229675216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (0.9%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 301.39 us (97.1%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.00445635476645827 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.559e-03 | 0.4% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6247.466057088093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.002785221685407742, dt = 0.00445635476645827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 291.28 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3881317890172014e-21,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0056234962387988145 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.433e-03 | 0.4% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11195.5585604492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007241576451866012, dt = 0.0056234962387988145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 301.89 us (97.1%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.006401594206364395 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.429e-03 | 0.4% | 1.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14164.868909962022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012865072690664826, dt = 0.006401594206364395 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 282.73 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3552527156068805e-20,1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0069203345497873495 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.353e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17035.471484083726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01926666689702922, dt = 0.0069203345497873495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 308.31 us (97.1%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.007266175733556896 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.369e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18200.390684026377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02618700144681657, dt = 0.007266175733556896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 250.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-20,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.007496757214777506 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.307e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20015.282303263357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03345317718037347, dt = 0.007496757214777506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.007650505353791911 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20860.719181534314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.040949934395150975, dt = 0.007650505353791911 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.007753037597350967 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.323e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20816.553034980592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04860043974894289, dt = 0.007753037597350967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 298.87 us (97.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-20,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.007821432062436807 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.417e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19703.501084301108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.056353477346293854, dt = 0.007821432062436807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.007867073976624393 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21786.432262011796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06417490940873066, dt = 0.007867073976624393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 319.53 us (97.2%)
LB move op cnt : 0
LB apply : 1.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,0,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.007897553317964951 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21204.146211076506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07204198338535506, dt = 0.007897553317964951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.007917929906372714 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.363e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20852.421173872284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07993953670332, dt = 0.007917929906372714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.007931576792131797 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21742.267595415604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08785746660969272, dt = 0.007931576792131797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.007940742509477388 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22903.185701007504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09578904340182452, dt = 0.007940742509477388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.00794692590837605 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22482.336480061687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10372978591130191, dt = 0.00794692590837605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-2.168404344971009e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.007951126039914554 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23264.23189811316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11167671181967796, dt = 0.007951126039914554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.007954008745232022 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21727.966539489575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11962783785959252, dt = 0.007954008745232022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007956017714264718 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22724.007919107178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12758184660482455, dt = 0.007956017714264718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.52 us (8.7%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.68 us (89.1%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-1.6263032587282567e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957448524871614 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22856.409415075083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13553786431908926, dt = 0.007957448524871614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958498002526793 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23155.621209138968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1434953128439609, dt = 0.007958498002526793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959297127244124 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22917.412480969702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15145381084648768, dt = 0.007959297127244124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959932972100792 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.452117495923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15941310797373182, dt = 0.007959932972100792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960463329558158 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22212.52666483952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1673730409458326, dt = 0.007960463329558158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 278.79 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.168404344971009e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960926463019331 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22294.521672341394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17533350427539077, dt = 0.007960926463019331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961347608568578 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22402.146831163616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1832944307384101, dt = 0.007961347608568578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961743310181481 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23256.42931979552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19125577834697866, dt = 0.007961743310181481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796212431059449 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22122.747507840624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19921752165716014, dt = 0.00796212431059449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.439454888092385e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962497479290781 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23847.263419775038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20717964596775462, dt = 0.007962497479290781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 309.44 us (97.1%)
LB move op cnt : 0
LB apply : 1.73 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.439454888092385e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962867098572454 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.376e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20838.309443320588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2151421434470454, dt = 0.007962867098572454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.574980159653073e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963235721698258 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23687.200870317487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22310501054561788, dt = 0.007963235721698258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 266.79 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963604745738588 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22319.163432274217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23106824626731615, dt = 0.007963604745738588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963974794248065 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.321e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21697.55323140764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23903185101305474, dt = 0.007963974794248065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 308.64 us (97.2%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796434597315462 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.357e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21133.399373665747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2469958258073028, dt = 0.00796434597315462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 333.60 us (97.4%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.659683454378503e-19,0)
sum a = (-5.421010862427522e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964718042129781 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.388e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20653.010796544317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25496017178045743, dt = 0.007964718042129781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.574980159653073e-19,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965090529615193 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.366e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20991.962790671965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2629248898225872, dt = 0.007965090529615193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.574980159653073e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965462810287005 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22722.07409798155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2708899803522024, dt = 0.007965462810287005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 298.66 us (97.1%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.574980159653073e-19,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965834157477703 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.413e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20300.925372935948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2788554431624894, dt = 0.007965834157477703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 269.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.710505431213761e-19,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966203778899852 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.471e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19496.255326283488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2868212773199671, dt = 0.007966203778899852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.981555974335137e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966570841233088 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.341e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21378.655738198722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29478748109886693, dt = 0.007966570841233088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.981555974335137e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966934487279967 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.327e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21619.89463449207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3027540519401, dt = 0.007966934487279967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 297.08 us (97.1%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.981555974335137e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967293848159206 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.431e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20047.463748517548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31072098642738, dt = 0.007967293848159206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967648052180322 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22693.580748823784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3186882802755392, dt = 0.007967648052180322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 272.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967996231493607 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.335e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21483.44300012819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3266559283277195, dt = 0.007967996231493607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (1.1%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 278.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968337527243 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22975.87809868446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3346239245592131, dt = 0.007968337527243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968671093705176 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23221.33769767981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3425922620864561, dt = 0.007968671093705176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 297.95 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968996101735062 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21887.77777235618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3505609331801613, dt = 0.007968996101735062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969311741729733 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22337.047533518144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35852992928189636, dt = 0.007969311741729733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796961722625017 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21917.346979173235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3664992410236261, dt = 0.00796961722625017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 250.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969911792392276 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.313e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21855.29201548851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37446885824987625, dt = 0.007969911792392276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970194703966352 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22893.21921115358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3824387700422685, dt = 0.007970194703966352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.10 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-3.7947076036992655e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970465253523254 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22680.811605948205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3904089647462349, dt = 0.007970465253523254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797072276425087 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22413.904146301877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3983794299997581, dt = 0.00797072276425087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.4%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.87890977618477e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970966591755516 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23283.796825913272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.406350152764009, dt = 0.007970966591755516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 278.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.87890977618477e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971196125736662 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21922.41735422723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4143211193557645, dt = 0.007971196125736662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971410791559087 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22507.012623315863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42229231548150115, dt = 0.007971410791559087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.87890977618477e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971610051724361 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22357.25453763118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43026372627306025, dt = 0.007971610051724361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079717934072415 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23688.291130990376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4382353363247846, dt = 0.0079717934072415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.3%)
patch tree reduce : 430.00 ns (0.0%)
gen split merge : 380.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 1.04 ms (99.1%)
LB move op cnt : 0
LB apply : 1.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.87890977618477e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079719603988959 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.089e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13736.51763230457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44620712973202614, dt = 0.0079719603988959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.149960319306146e-19,-4.336808689942018e-19,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972110608414934 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22936.69459069862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45417909013092206, dt = 0.007972110608414934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.1%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-4.336808689942018e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972243659528293 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22160.465785764565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.462151200739337, dt = 0.007972243659528293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.149960319306146e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797235921892113 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22558.715126876203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47012344439886533, dt = 0.00797235921892113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.149960319306146e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972456997077933 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22454.01167910566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4780958036177865, dt = 0.007972456997077933 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.285485590866834e-19,-4.336808689942018e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972536749015376 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22872.35227603531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4860682606148644, dt = 0.007972536749015376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.285485590866834e-19,-4.336808689942018e-19,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972598274902376 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.329e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21598.896690950307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4940407973638798, dt = 0.007972598274902376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.11 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.336307567702092e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972641420565902 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23248.283020845152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5020133956387822, dt = 0.007972641420565902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 230.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.38712954453735e-19,-3.2526065174565133e-19,0)
sum a = (-8.673617379884035e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972666077881371 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23841.611237727615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5099860370593481, dt = 0.007972666077881371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.488773498207866e-19,-3.2526065174565133e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972672185046567 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22194.10789321821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5179587031372295, dt = 0.007972672185046567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.74 us (95.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972659726738482 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22416.065449785874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5259313753222761, dt = 0.007972659726738482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.55653613398821e-19,-2.168404344971009e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972628734152724 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22369.29683695122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5339040350490145, dt = 0.007972628734152724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.692061405548898e-19,-2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972579284925278 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21684.164297861615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5418766637831672, dt = 0.007972579284925278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.692061405548898e-19,-2.168404344971009e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972511502936975 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21482.40312635878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5498492430680925, dt = 0.007972511502936975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.692061405548898e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797242555800107 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22790.270742223685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5578217545710294, dt = 0.00797242555800107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 268.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.692061405548898e-19,-2.168404344971009e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972321665434804 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22412.39632290196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5657941801290305, dt = 0.007972321665434804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.963111948670274e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972200085516062 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23397.673139044273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5737665017944653, dt = 0.007972200085516062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 282.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.963111948670274e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972061122826501 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.325e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21655.789927583304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5817387018799813, dt = 0.007972061122826501 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 249.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-3.2526065174565133e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971905125482931 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23084.116393090553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5897107630028078, dt = 0.007971905125482931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.963111948670274e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971732484258835 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22672.040589890355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5976826681282907, dt = 0.007971732484258835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.963111948670274e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971543631598398 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22806.189474123563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6056544006125496, dt = 0.007971543631598398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-4.87890977618477e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971339040525608 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23755.88221191408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.613625944244148, dt = 0.007971339040525608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-4.87890977618477e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971119223451182 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23521.174308664937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6215972832846736, dt = 0.007971119223451182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-4.87890977618477e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970884730880473 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23293.876438047373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6295684025081247, dt = 0.007970884730880473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-4.87890977618477e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797063615002572 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23320.867739690326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6375392872390052, dt = 0.00797063615002572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-5.421010862427522e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970374103326119 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23714.83814509145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6455099233890309, dt = 0.007970374103326119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.78 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970099246879676 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23013.020025949005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.653480297492357, dt = 0.007970099246879676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796981226879083 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23194.871265513644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6614503967392367, dt = 0.00796981226879083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 284.71 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-5.963111948670274e-19,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796951388743808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.306e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21966.466255312964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6694202090080275, dt = 0.00796951388743808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-5.963111948670274e-19,0)
sum a = (-4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796920484966607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22897.941034745738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6773897228954655, dt = 0.00796920484966607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 239.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-5.963111948670274e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968885928906889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23190.018743981327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6853589277451316, dt = 0.007968885928906889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 450.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 293.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-5.963111948670274e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968557923235227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22177.582562254494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6933278136740385, dt = 0.007968557923235227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-6.2341624917916505e-19,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968221653362527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22205.732428424653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7012963715972738, dt = 0.007968221653362527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-6.2341624917916505e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796787796057517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23673.92312271815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7092645932506363, dt = 0.00796787796057517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-5.963111948670274e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967527704622003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.391e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20616.652285650034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7172324712112115, dt = 0.007967527704622003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.098637220230962e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967171761556537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23787.511029261954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7251999989158335, dt = 0.007967171761556537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 268.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-6.098637220230962e-19,0)
sum a = (-5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966811021539367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22763.618885624455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7331671706773901, dt = 0.007966811021539367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.166399856011306e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796644638660635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22564.856798792247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7411339816989295, dt = 0.00796644638660635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 265.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-6.2002811739014785e-19,0)
sum a = (-6.776263578034403e-21,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966078768408213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23191.177236909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7491004280855359, dt = 0.007966078768408213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,-6.2002811739014785e-19,0)
sum a = (2.710505431213761e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965709085927284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22588.409720246607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7570665068539442, dt = 0.007965709085927284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.098637220230962e-19,0)
sum a = (5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965338263177085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23728.65381569045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7650322159398715, dt = 0.007965338263177085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.098637220230962e-19,0)
sum a = (0,-1.3010426069826053e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964967226890678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23466.672461291542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7729975542030486, dt = 0.007964967226890678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.2341624917916505e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796459690420342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23604.546093269735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7809625214299393, dt = 0.00796459690420342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-6.2341624917916505e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964228220336041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22694.374127968676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7889271183341426, dt = 0.007964228220336041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-6.2341624917916505e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796386209628382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23849.39800363153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7968913465544787, dt = 0.00796386209628382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-6.2341624917916505e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963499446517579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22947.561840662984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8048552086507625, dt = 0.007963499446517579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.963111948670274e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963141176702231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22981.72435289156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8128187080972801, dt = 0.007963141176702231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.17 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.963111948670274e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962788181438625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22744.846016444175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8207818492739823, dt = 0.007962788181438625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.963111948670274e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962441342034146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23939.055494325105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8287446374554209, dt = 0.007962441342034146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-5.963111948670274e-19,0)
sum a = (4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962101524307688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22964.27499276812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8367070787974551, dt = 0.007962101524307688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796176957643439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23500.100012632134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8446691803217627, dt = 0.00796176957643439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796144632683538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23450.401491639474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8526309498981971, dt = 0.00796144632683538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,-5.963111948670274e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796113258211783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23680.235087580437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8605923962250325, dt = 0.00796113258211783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.963111948670274e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960829125070243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23075.3378729396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8685535288071503, dt = 0.007960829125070243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.87890977618477e-19,-5.963111948670274e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960536712717913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22514.7182420087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8765143579322205, dt = 0.007960536712717913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960256074443403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23073.982300982192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8844748946449384, dt = 0.007960256074443403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.963111948670274e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959987910176432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23087.147527086603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8924351507193818, dt = 0.007959987910176432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959732888657747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22916.551889111066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9003951386295582, dt = 0.007959732888657747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 270.45 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-5.421010862427522e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959491645781067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22704.81122598518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9083548715182159, dt = 0.007959491645781067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959264783017181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23612.85005163732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.916314363163997, dt = 0.007959264783017181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959052865924037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23497.91144731987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9242736279470142, dt = 0.007959052865924037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958856422746262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23644.145543441497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9322326808129382, dt = 0.007958856422746262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,-3.2526065174565133e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958675943107675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22974.9554338305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9401915372356845, dt = 0.007958675943107675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958511876799869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23636.76467886125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9481502131787922, dt = 0.007958511876799869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.981555974335137e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795836463266967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22373.45634929572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9561087250555921, dt = 0.00795836463266967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-4.336808689942018e-19,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958234577608326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23826.289714576982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9640670896882617, dt = 0.007958234577608326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958122035644648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23769.641915558204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9720253242658701, dt = 0.007958122035644648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1170812458958252e-19,-3.2526065174565133e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958027287144499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23213.403141485385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9799834463015147, dt = 0.007958027287144499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1170812458958252e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957950568118244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23049.41230485303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9879414735886591, dt = 0.007957950568118244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 291.15 us (96.9%)
LB move op cnt : 0
LB apply : 1.93 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1848438816761693e-19,-4.336808689942018e-19,0)
sum a = (8.673617379884035e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957892069638125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.337e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21430.76262416839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9958994241567773, dt = 0.007957892069638125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1170812458958252e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957851937366735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23242.92142864453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0038573162264155, dt = 0.007957851937366735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.083199928005653e-19,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957830271197777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.312e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21836.534674947707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0118151681637821, dt = 0.007957830271197777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1170812458958252e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957827125009972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23665.94051527437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.01977299843498, dt = 0.007957827125009972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1170812458958252e-19,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957842506534701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23113.098941680208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.02773082555999, dt = 0.007957842506534701 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 460.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 298.77 us (97.1%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.981555974335137e-19,-5.421010862427522e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957876377337629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.298e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22074.697233230225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0356886680665247, dt = 0.007957876377337629 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.981555974335137e-19,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957928652914443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23766.008722514434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0436465444438623, dt = 0.007957928652914443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 255.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.981555974335137e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957999202900396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22733.763498504963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0516044730967766, dt = 0.007957999202900396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 272.70 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958087851393162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22644.853814368762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.059562472299677, dt = 0.007958087851393162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 265.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958194377388244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22828.94517857358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0675205601510702, dt = 0.007958194377388244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795831851532592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22834.381893651036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0754787545284585, dt = 0.00795831851532592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-4.336808689942018e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958459955748275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22814.13623462795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0834370730437846, dt = 0.007958459955748275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958618346064976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22816.90370439781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0913955329995328, dt = 0.007958618346064976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958793291425703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23524.97996206079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0993541513455978, dt = 0.007958793291425703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958984355697326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23286.437388406324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1073129446370236, dt = 0.007958984355697326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959191062543372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.327e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21598.166515034845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1152719289927209, dt = 0.007959191062543372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.2526065174565133e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959412896603258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22661.339117209485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1232311200552643, dt = 0.007959412896603258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959649304768416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23412.73498644184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1311905329518674, dt = 0.007959649304768416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 264.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959899697552236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22424.02134912091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.139150182256636, dt = 0.007959899697552236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960163450550542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21646.92682526477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1471100819541882, dt = 0.007960163450550542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960439905989073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23771.261405493384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1550702454047388, dt = 0.007960439905989073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 251.81 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796072837435423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23526.307734257276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.163030685310728, dt = 0.00796072837435423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796102813610313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24101.853432219512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.170991413685082, dt = 0.00796102813610313 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.7947076036992655e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961338443448816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22917.164135280862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1789524418211852, dt = 0.007961338443448816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961658522216366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23286.88147219567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.186913780264634, dt = 0.007961658522216366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961987573765239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23437.591016790262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1948754387868503, dt = 0.007961987573765239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962324776973347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23512.312882406146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2028374263606156, dt = 0.007962324776973347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962669290277868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22682.119067804168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.210799751137589, dt = 0.007962669290277868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.2526065174565133e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963020253767918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23690.527581336843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2187624204278669, dt = 0.007963020253767918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 275.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5236570605778894e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963376791323834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22303.938442790033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2267254406816348, dt = 0.007963376791323834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.89 us (93.5%)
LB move op cnt : 0
LB apply : 4.87 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.6591823321385775e-19,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963738012797978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22389.05610726024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2346888174729587, dt = 0.007963738012797978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5914196963582334e-19,0)
sum a = (2.710505431213761e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964103016231546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22874.207702118016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2426525554857566, dt = 0.007964103016231546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5575383784680614e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964470890101967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24025.007171639325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2506166585019882, dt = 0.007964470890101967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5575383784680614e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796484071559543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24054.80033488604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.25858112939209, dt = 0.00796484071559543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5236570605778894e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965211568898733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23143.776606628275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2665459701076855, dt = 0.007965211568898733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5236570605778894e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965582523504936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23829.309794435023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2745111816765844, dt = 0.007965582523504936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.6591823321385775e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965952652526987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23001.011512191686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2824767642000894, dt = 0.007965952652526987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.5236570605778894e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966321031013588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23556.93028404512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2904427168526165, dt = 0.007966321031013588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.5236570605778894e-19,0)
sum a = (-2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796668673826151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23551.44194099969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2984090378836302, dt = 0.00796668673826151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.5236570605778894e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967048860118571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23660.75143134929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3063757246218917, dt = 0.007967048860118571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 230.24 us (88.5%)
LB move op cnt : 0
LB apply : 22.69 us (8.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.5236570605778894e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796740649127148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23749.191337779488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3143427734820103, dt = 0.00796740649127148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967758737512846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22797.07430423108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.322310179973282, dt = 0.007967758737512846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968104717981548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23540.787322418822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3302779387107948, dt = 0.007968104717981548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968443567370913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23490.432311968023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3382460434287764, dt = 0.007968443567370913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968774438099036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21918.157484081006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3462144869961472, dt = 0.007968774438099036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,-3.7947076036992655e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969096502435756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.748e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16410.687222932116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3541832614342462, dt = 0.007969096502435756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796940895458092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22567.583706868758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3621523579366819, dt = 0.00796940895458092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-4.87890977618477e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969711012688558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23011.34068444912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3701217668912629, dt = 0.007969711012688558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-4.87890977618477e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970001920831917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22970.66645984856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3780914779039515, dt = 0.007970001920831917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797028095090421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23036.94398053992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3860614798247834, dt = 0.00797028095090421 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 253.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-3.7947076036992655e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797054740445033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23819.673054098068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3940317607756876, dt = 0.00797054740445033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-5.421010862427522e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970800614424697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24018.243182676768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4020023081801378, dt = 0.007970800614424697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-6.505213034913027e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971039946870833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21799.966885436246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4099731087945626, dt = 0.007971039946870833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 242.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971264802518316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22625.520333058415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4179441487414335, dt = 0.007971264802518316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-5.421010862427522e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971474618292906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23043.184492134613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4259154135439518, dt = 0.007971474618292906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-5.421010862427522e-19,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971668868736048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23618.756389476453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4338868881622446, dt = 0.007971668868736048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-5.421010862427522e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971847067330057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23456.663403307513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4418585570309808, dt = 0.007971847067330057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.6%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 438.45 us (98.0%)
LB move op cnt : 0
LB apply : 1.81 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972008767725492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.469e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19541.315445983902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4498304040983108, dt = 0.007972008767725492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079721535648676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23337.072431277207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4578024128660363, dt = 0.0079721535648676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 353.24 us (97.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (-8.673617379884035e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972281096018852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21486.88490157002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4657745664309039, dt = 0.007972281096018852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797239104167499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23646.485141274647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4737468475269226, dt = 0.00797239104167499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972483126372073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23169.269117899184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4817192385685976, dt = 0.007972483126372073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.574980159653073e-19,-6.505213034913027e-19,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972557119382545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23263.04065949734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4896917216949697, dt = 0.007972557119382545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.541098841762901e-19,-6.505213034913027e-19,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972612835298421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23108.8240033246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4976642788143522, dt = 0.007972612835298421 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5707449949168015e-19,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972650134500126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23535.19545315275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5056368916496505, dt = 0.007972650134500126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.507217523872729e-19,-8.673617379884035e-19,0)
sum a = (-8.673617379884035e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972668923509679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24539.872574103403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5136095417841506, dt = 0.007972668923509679 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 227.40 us (88.1%)
LB move op cnt : 0
LB apply : 23.48 us (9.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.574980159653073e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972669155227414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23264.71420829818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5215822107076604, dt = 0.007972669155227414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.574980159653073e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972650829051487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23697.521773514498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5295548798628877, dt = 0.007972650829051487 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972613990879946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23165.14324456423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5375275306919391, dt = 0.007972613990879946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.439454888092385e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972558732995292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23642.992188449112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5455001446828192, dt = 0.007972558732995292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972485193831886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22172.857117637148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5534727034158144, dt = 0.007972485193831886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972393557626726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23393.17552925908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5614451886096463, dt = 0.007972393557626726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 272.76 us (97.0%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-4.336808689942018e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797228405395456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23476.48786811586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5694175821672731, dt = 0.00797228405395456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972156957148544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23896.042691353294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5773898662212278, dt = 0.007972156957148544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972012585607898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22947.915837017896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5853620231783763, dt = 0.007972012585607898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971851300994363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23733.07552211115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5933340357639842, dt = 0.007971851300994363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-4.336808689942018e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971673507319638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23081.262437784022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6013058870649786, dt = 0.007971673507319638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,-5.421010862427522e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797147964992606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23655.831461907943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6092775605722982, dt = 0.00797147964992606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-5.963111948670274e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971270214363176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22486.613921163997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6172490402222242, dt = 0.007971270214363176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,-5.963111948670274e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797104572516321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24248.172738340625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6252203104365874, dt = 0.00797104572516321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-5.421010862427522e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970806744518508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22621.23825854417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6331913561617506, dt = 0.007970806744518508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 278.08 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-4.87890977618477e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970553870864431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22877.13457274477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6411621629062692, dt = 0.007970553870864431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970287737371311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.321e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21728.85342684397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6491327167771337, dt = 0.007970287737371311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970009010349445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23255.503737212828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.657103004514505, dt = 0.007970009010349445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 250.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (-4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969718387571179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23401.5885178505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6650730135248544, dt = 0.007969718387571179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.66 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969416596514376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23662.532418580875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6730427319124255, dt = 0.007969416596514376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796910439253193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23520.726224391095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6810121485089398, dt = 0.00796910439253193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968782556951817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23869.777951766635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6889812529014716, dt = 0.007968782556951817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-4.0657581468206416e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968451895112716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23884.533130596174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6969500354584235, dt = 0.007968451895112716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.0657581468206416e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968113234340216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23819.96112470608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7049184873535361, dt = 0.007968113234340216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.7947076036992655e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967767421868667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24101.0443936804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7128866005878765, dt = 0.007967767421868667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-3.7947076036992655e-19,0)
sum a = (-1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967415322714106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23796.73256493603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7208543680097452, dt = 0.007967415322714106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-3.9302328752599536e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967057817503604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23562.823495686942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7288217833324593, dt = 0.007967057817503604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-3.9302328752599536e-19,0)
sum a = (-5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966695800266559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23788.297978602346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7367888411499628, dt = 0.007966695800266559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-3.9979955110402976e-19,0)
sum a = (-2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966330176193548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23894.810630118856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7447555369502294, dt = 0.007966330176193548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-4.0488174878755556e-19,0)
sum a = (3.3881317890172014e-21,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965961859368412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22952.266899637834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.752721867126423, dt = 0.007965961859368412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-4.0657581468206416e-19,0)
sum a = (2.710505431213761e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965591770479277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23563.5773248095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7606878289857915, dt = 0.007965591770479277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-4.1335207826009857e-19,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965220834514307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23653.401520955133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7686534207562707, dt = 0.007965220834514307 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-4.2012834183813297e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964849978447996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23080.664988897457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.776618641590785, dt = 0.007964849978447996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-4.0657581468206416e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964480128923724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23699.385495786188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.784583491569233, dt = 0.007964480128923724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-4.0657581468206416e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964112209938505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23852.731724627807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7925479716981567, dt = 0.007964112209938505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963747140535583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23375.847284073898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8005120839080953, dt = 0.007963747140535583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-4.0657581468206416e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963385832510743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23093.71907801345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8084758310486309, dt = 0.007963385832510743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-3.7947076036992655e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963029188137941 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22506.371972135457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8164392168811416, dt = 0.007963029188137941 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962678097919946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22138.46962971909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8244022460692795, dt = 0.007962678097919946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962333438369608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22970.312868866447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8323649241671993, dt = 0.007962333438369608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961996069827114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22669.92747538056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.840327257605569, dt = 0.007961996069827114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796166683431872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23652.693806239135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.848289253675396, dt = 0.00796166683431872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.87890977618477e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796134655346217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23003.210757261146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8562509205097149, dt = 0.00796134655346217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796103602642398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.389e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20629.599931810473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.864212267063177, dt = 0.00796103602642398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-4.87890977618477e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796073602793357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23176.945187646335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.872173303089601, dt = 0.00796073602793357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960447306359008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23317.76277294365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8801340391175347, dt = 0.007960447306359008 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960170581849297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22592.407421659005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8880944864238938, dt = 0.007960170581849297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959906544547434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24262.052743313783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.896054657005743, dt = 0.007959906544547434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959655852878814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22942.591256133437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9040145635502905, dt = 0.007959655852878814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959419131918966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22886.25708566482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9119742194031693, dt = 0.007959419131918966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959196971844685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23627.451992852762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9199336385350882, dt = 0.007959196971844685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958989926472256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23639.696767068122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.927892835506933, dt = 0.007958989926472256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958798511886259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23671.950957499026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9358518254334052, dt = 0.007958798511886259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-6.505213034913027e-19,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958623205162343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23784.962176890447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9438106239452915, dt = 0.007958623205162343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958464443186937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23077.168803208002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9517692471504537, dt = 0.007958464443186937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-6.505213034913027e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958322621576796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23320.99497648238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9597277115936407, dt = 0.007958322621576796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 224.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795819809370098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23968.94610759391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9676860342152174, dt = 0.00795819809370098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 225.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.776263578034403e-20,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958091169807566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24541.23652014217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9756442323089183, dt = 0.007958091169807566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.6%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 467.70 us (98.1%)
LB move op cnt : 0
LB apply : 1.76 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.776263578034403e-20,-7.589415207398531e-19,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795800211625717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.436e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19944.618556304875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.983602323478726, dt = 0.00795800211625717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.098637220230962e-20,-6.505213034913027e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957931154865166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23704.322903983822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.991560325594983, dt = 0.007957931154865166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.098637220230962e-20,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957878462354122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22803.20212738329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9995182567498482, dt = 0.007957878462354122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (0.8%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 347.42 us (97.3%)
LB move op cnt : 0
LB apply : 2.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.691560283308973e-20,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957844169917785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.391e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20598.4922799591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0074761352122024, dt = 0.007957844169917785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957828362897582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23297.141807159387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.01543397938212, dt = 0.007957828362897582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 285.64 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795783108057254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.329e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21556.113112013343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0233918077450177, dt = 0.00795783108057254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.486769009248164e-20,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957852316062936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23976.110996783853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0313496388255903, dt = 0.007957852316062936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-6.505213034913027e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957892016348111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23264.9459618274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.039307491141653, dt = 0.007957892016348111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957950082398167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23063.345408129695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.047265383158001, dt = 0.007957950082398167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-6.505213034913027e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958026369419424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23949.350574881813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0552233332403995, dt = 0.007958026369419424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795812068721295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23661.63704366787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.063181359609819, dt = 0.00795812068721295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958232800645332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23931.018748525985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.071139480297032, dt = 0.007958232800645332 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-6.505213034913027e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958362430230462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23504.328938684674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0790977130976773, dt = 0.007958362430230462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-6.505213034913027e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958509252821166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23293.923315570664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.087056075527908, dt = 0.007958509252821166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-6.505213034913027e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958672902408726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22880.58460410771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.095014584780729, dt = 0.007958672902408726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (1.4%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-7.589415207398531e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958852971028607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.335e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21460.2073938843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.102973257683138, dt = 0.007958852971028607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959049009770132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22625.25057562538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1109321106541667, dt = 0.007959049009770132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-8.131516293641283e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959260529887623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23568.34281754353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.118891159663937, dt = 0.007959260529887623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 293.50 us (97.1%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959487004010456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22328.395611205007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1268504201938243, dt = 0.007959487004010456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959727867449029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23495.291959000006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.134809907197835, dt = 0.007959727867449029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.047314121155779e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079599825195935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23511.059193032186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.142769635065284, dt = 0.0079599825195935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.047314121155779e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960250325401963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22686.972039873766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.150729617584877, dt = 0.007960250325401963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 361.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.047314121155779e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960530616974501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23399.31016946906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.158689867910279, dt = 0.007960530616974501 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960822695209199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23230.819169910414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1666503985272536, dt = 0.007960822695209199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-8.131516293641283e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961125831536173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22319.872417567385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1746112212224626, dt = 0.007961125831536173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-8.131516293641283e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961439269725444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.323e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21658.278187849486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.182572347053999, dt = 0.007961439269725444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-7.589415207398531e-19,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961762227764244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24022.628090406848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.190533786323724, dt = 0.007961762227764244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962093899799095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22732.61071323585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1984955485514885, dt = 0.007962093899799095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962433458138097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24025.811600265828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2064576424512876, dt = 0.007962433458138097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962780055308375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23116.40673707732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.214420075909426, dt = 0.007962780055308375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.402566836762659e-19,0)
sum a = (1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963132826163776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23158.013610043065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2223828559647343, dt = 0.007963132826163776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963490890037535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23691.338885409306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.230345988790898, dt = 0.007963490890037535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.538092108323347e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963853352934739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23363.546811034408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2383094796809355, dt = 0.007963853352934739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.470329472543003e-19,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964219309759081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24045.067779016754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2462733330338702, dt = 0.007964219309759081 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.512681119905718e-19,0)
sum a = (-1.3552527156068805e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964587846568514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24005.222418065954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2542375523436293, dt = 0.007964587846568514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.504210790433175e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964958042854105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23508.20931673663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.262202140190198, dt = 0.007964958042854105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.470329472543003e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965328973836597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23648.593732004927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.270167098233052, dt = 0.007965328973836597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-8.402566836762659e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965699712774834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23688.632425677028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.278132427206889, dt = 0.007965699712774834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-8.673617379884035e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966069333280382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22125.014536533003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2860981269196636, dt = 0.007966069333280382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-8.944667923005412e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966436911632568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23312.292384575478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.294064196252944, dt = 0.007966436911632568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966801529088111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22678.382230229578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.302030633164577, dt = 0.007966801529088111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.402566836762659e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967162274179611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23951.521125265837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.309997434693665, dt = 0.007967162274179611 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 289.36 us (97.1%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.402566836762659e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967518244997076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22142.094449339675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.317964596967845, dt = 0.007967518244997076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967868551446778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23804.895152627574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.325932115212842, dt = 0.007967868551446778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968212317481724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23582.39379880577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3338999837642884, dt = 0.007968212317481724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.673617379884035e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968548683298129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24011.60866906586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.34186819608177, dt = 0.007968548683298129 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 500.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.131516293641283e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968876807492276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23298.109026837872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3498367447650685, dt = 0.007968876807492276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.131516293641283e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969195869172382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23621.382543775286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.357805621572561, dt = 0.007969195869172382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-8.131516293641283e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969505070019959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22159.05361825655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3657748174417335, dt = 0.007969505070019959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-8.131516293641283e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969803636295564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22606.17355174391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3737443225117536, dt = 0.007969803636295564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.131516293641283e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970090820783734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23173.554012514312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.381714126148049, dt = 0.007970090820783734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 452.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 292.83 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-8.131516293641283e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079703659046721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.313e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21855.591846843072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3896842169688326, dt = 0.0079703659046721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-8.673617379884035e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970628199360003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24165.438959060408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3976545828735047, dt = 0.007970628199360003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970877048191757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23546.17328336718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4056252110728646, dt = 0.007970877048191757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797111182811031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23371.29355754855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4135960881210563, dt = 0.00797111182811031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797133195122692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23023.108617776892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4215671999491666, dt = 0.00797133195122692 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-8.673617379884035e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797153686630279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22547.0791784851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4295385319003935, dt = 0.00797153686630279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971726060138925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22351.32189347553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4375100687666964, dt = 0.007971726060138925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079718990588705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22536.312669965493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4454817948268355, dt = 0.0079718990588705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797205542916245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23999.575693660845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.453453693885706, dt = 0.00797205542916245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 255.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972194779303231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22721.18350944716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.461425749314868, dt = 0.007972194779303231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972316760193715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23055.87027412611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4693979440941716, dt = 0.007972316760193715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972421066228887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22625.21991271449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4773702608543653, dt = 0.007972421066228887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-7.589415207398531e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972507436069877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23799.140133159082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4853426819205944, dt = 0.007972507436069877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.08 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-7.589415207398531e-19,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972575653304396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22439.64714710152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.493315189356664, dt = 0.007972575653304396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9979955110402976e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972625546993786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23514.974238640865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5012877650099683, dt = 0.007972625546993786 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9979955110402976e-19,-8.673617379884035e-19,0)
sum a = (-8.673617379884035e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972656992105327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23649.864550957627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.509260390556962, dt = 0.007972656992105327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8624702394796095e-19,-8.673617379884035e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797266990982862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23856.738680369697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5172330475490674, dt = 0.00797266990982862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.4%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.17 us (96.2%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972664267775195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23219.283442492648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.525205717458896, dt = 0.007972664267775195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797264008006093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23751.92724533528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.533178381726671, dt = 0.00797264008006093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972597407270866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24048.54391454529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.541151021806732, dt = 0.007972597407270866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797253635630671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22978.98575864323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.549123619214003, dt = 0.00797253635630671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972457080117281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23729.532747287252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5570961555703096, dt = 0.007972457080117281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 279.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972359777312636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22285.895143232905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.565068612650427, dt = 0.007972359777312636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972244691662902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23065.834702251323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5730409724277394, dt = 0.007972244691662902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-6.505213034913027e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972112111483064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22636.971741714024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5810132171194025, dt = 0.007972112111483064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971962368905367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23781.83026610249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5889853292308853, dt = 0.007971962368905367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971795839041151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22960.592521050687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5969572915997907, dt = 0.007971795839041151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797161293903436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23999.465645100117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.604929087438832, dt = 0.00797161293903436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-7.589415207398531e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971414127009153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24131.33713005489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.612900700377866, dt = 0.007971414127009153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971199900914324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23918.767014454355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6208721145048752, dt = 0.007971199900914324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970970797267581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22556.648142132624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6288433144057897, dt = 0.007970970797267581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-5.963111948670274e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079707273898029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22134.01967549926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6368142852030574, dt = 0.0079707273898029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-7.047314121155779e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970470288024424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22418.14366653862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6447850125928603, dt = 0.007970470288024424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797020013567073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22778.286042961132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6527554828808846, dt = 0.00797020013567073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796991760909336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23409.02307264237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.660725683016555, dt = 0.00796991760909336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-7.047314121155779e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079696234155538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.387e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20678.809473443176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6686956006256484, dt = 0.0079696234155538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.047314121155779e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969318291443308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23118.59945528169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6766652240412023, dt = 0.007969318291443308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969003000430217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23721.699993216516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6846345423326454, dt = 0.007969003000430217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968678331539346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23580.51709172481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6926035453330757, dt = 0.007968678331539346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968345097168579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22847.309702432085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.700572223664615, dt = 0.007968345097168579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 390.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.2341624917916505e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968004131047571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23882.605544465227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7085405687617836, dt = 0.007968004131047571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.2341624917916505e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967656286143881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22239.376527263285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.716508572892831, dt = 0.007967656286143881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967302432521816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23113.24699183802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.724476229178975, dt = 0.007967302432521816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796694345515948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23261.53658012833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.732443531611497, dt = 0.00796694345515948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.369687763352339e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966580251729494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23147.831409720242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7404104750666565, dt = 0.007966580251729494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.369687763352339e-19,0)
sum a = (-1.3552527156068805e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966213730349114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23774.607073292715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.748377055318386, dt = 0.007966213730349114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.366511389800135e-19,0)
sum a = (1.3552527156068805e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796584480730536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23125.870941962545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.756343269048735, dt = 0.00796584480730536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-6.369687763352339e-19,0)
sum a = (1.0842021724855044e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965474404760914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22929.196248993976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7643091138560405, dt = 0.007965474404760914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796510344844659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23966.986015610368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7722745882608013, dt = 0.00796510344844659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.505213034913027e-19,0)
sum a = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964732865346177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23574.40377396665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.780239691709248, dt = 0.007964732865346177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.776263578034403e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964363581379384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23528.757773224075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.788204424574594, dt = 0.007964363581379384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 227.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-6.776263578034403e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963996519088785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23826.75309240338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7961687881559736, dt = 0.007963996519088785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.047314121155779e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963632595336488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23947.68788801256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8041327846750623, dt = 0.007963632595336488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.318364664277155e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963272719016276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22874.25167051349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8120964172703986, dt = 0.007963272719016276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.047314121155779e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962917788786874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24032.18884915603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.820059689989415, dt = 0.007962917788786874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962568690832016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22269.120250538923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.828022607778202, dt = 0.007962568690832016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-7.589415207398531e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962226296652853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22671.135173842376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.835985176469034, dt = 0.007962226296652853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961891460898034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22340.56299370738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.843947402765687, dt = 0.007961891460898034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 232.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-7.589415207398531e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961565019236987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23740.697854462847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.851909294226585, dt = 0.007961565019236987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 285.62 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961247786281525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.291e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22202.41785670818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.859870859245822, dt = 0.007961247786281525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796094055356084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23737.992087427767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8678321070321036, dt = 0.00796094055356084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960644087554907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23714.429449566054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8757930475856646, dt = 0.007960644087554907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.2%)
LB compute : 241.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960359127791116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23489.058190218162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8837536916732196, dt = 0.007960359127791116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960086385008664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22969.329009450707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.891714050801011, dt = 0.007960086385008664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959826539395316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23543.082968446226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8996741371860195, dt = 0.007959826539395316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795958023890066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22599.946008346717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9076339637254147, dt = 0.00795958023890066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.76 us (88.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-6.505213034913027e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959348097630123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22096.237257166365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9155935439643152, dt = 0.007959348097630123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-6.505213034913027e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959130694323434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23663.397557545464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9235528920619456, dt = 0.007959130694323434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958928570921366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23057.264402558303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.931512022756269, dt = 0.007958928570921366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795874223122412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23174.932870772744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9394709513271904, dt = 0.00795874223122412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795857213964464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22902.507501809985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9474296935584143, dt = 0.00795857213964464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.981555974335137e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795841872005979 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23782.113981986487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.955388265698059, dt = 0.00795841872005979 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.981555974335137e-19,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079582823547622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23805.802730712516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9633466844181187, dt = 0.0079582823547622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795816338351527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22724.29697169551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.971304966772881, dt = 0.00795816338351527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3881317890172014e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958062102713598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23554.657164020355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.979263130156396, dt = 0.007958062102713598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957978764650823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22579.94168404734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9872211922591094, dt = 0.007957978764650823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3203691532368573e-19,-6.505213034913027e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795791357689664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23575.64544002258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9951791710237603, dt = 0.00795791357689664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3881317890172014e-19,-6.505213034913027e-19,0)
sum a = (8.673617379884035e-19,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957866701784512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23249.020184158104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.003137084600657, dt = 0.007957866701784512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4558944247975454e-19,-6.505213034913027e-19,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957838256011162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.397e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20500.704597525197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.011094951302441, dt = 0.007957838256011162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4558944247975454e-19,-5.421010862427522e-19,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957828310348998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23681.047058069027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0190527895584522, dt = 0.007957828310348998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3881317890172014e-19,-5.421010862427522e-19,0)
sum a = (1.3010426069826053e-18,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957836889471975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23616.08923842255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.027010617868801, dt = 0.007957836889471975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (73.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957863971895353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23254.665267862652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0349684547582734, dt = 0.007957863971895353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079579094900296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23535.137032543884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.042926318730169, dt = 0.0079579094900296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-4.336808689942018e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795797333034807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.6% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22653.927731391996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0508842282201987, dt = 0.00795797333034807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 273.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795805533366831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.393e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20571.315316344455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0588422015505468, dt = 0.00795805533366831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 289.01 us (96.3%)
LB move op cnt : 0
LB apply : 2.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958155295546134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.368e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20946.29314517269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.066800256884215, dt = 0.007958155295546134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795827296678159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23015.840766959664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.074758412179761, dt = 0.00795827296678159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795840805403559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22744.692015809243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0827166851465426, dt = 0.00795840805403559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958560220555733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22743.814172897506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0906750932005784, dt = 0.007958560220555733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 451.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 293.62 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958729087009586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.299e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22054.9015093903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.098633653421134, dt = 0.007958729087009586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958914232423365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23008.79407248615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.106592382508144, dt = 0.007958914232423365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959115195223881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23472.391630777234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1145512967405673, dt = 0.007959115195223881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959331474381092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23417.82923157506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1225104119357914, dt = 0.007959331474381092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-2.168404344971009e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959562530648645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23577.14998928006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1304697434101723, dt = 0.007959562530648645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959807787899374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.7% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23036.02962814827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.138429305940821, dt = 0.007959807787899374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960066634552511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23698.11305043475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1463891137287203, dt = 0.007960066634552511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 244.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960338425089222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23122.215153887835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.154349180363273, dt = 0.007960338425089222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 237.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.710505431213761e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960622481652746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23669.488942418917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.162309518788362, dt = 0.007960622481652746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960918095729312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23987.73330795736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1702701412700147, dt = 0.007960918095729312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796122452990577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23131.426285254303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.178231059365744, dt = 0.00796122452990577 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 257.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961541019699625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23116.438979972034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.18619228389565, dt = 0.007961541019699625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961866775457052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23058.476284614928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1941538249153494, dt = 0.007961866775457052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 266.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.439454888092385e-19,0)
sum a = (2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962200984314301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22633.996883695032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2021156916908065, dt = 0.007962200984314301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962542812217636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23672.074775291818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2100778926751206, dt = 0.007962542812217636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.168404344971009e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962891405996974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22950.94307250625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.218040435487338, dt = 0.007962891405996974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.303929616531697e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796324589548802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23833.876164376325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.226003326893335, dt = 0.00796324589548802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-2.168404344971009e-19,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963605395697836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23122.30827482269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.233966572788823, dt = 0.007963605395697836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.9651164376299768e-19,0)
sum a = (-5.421010862427522e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963969009008373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22797.468591343182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.241930178184521, dt = 0.007963969009008373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 243.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.9312351197398048e-19,0)
sum a = (6.776263578034403e-21,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964335827412686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22385.301610937026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.249894147193529, dt = 0.007964335827412686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 267.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.8719428134320037e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964704934778152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23202.3508389325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.257858483020942, dt = 0.007964704934778152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.8973538018496328e-19,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965075409131253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24111.84476254019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.26582318795572, dt = 0.007965075409131253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.7618285302889447e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796544632495816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23488.445498764322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2737882633648514, dt = 0.00796544632495816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 248.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.7618285302889447e-19,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965816755515377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23317.10326786201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2817537096898097, dt = 0.007965816755515377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.6263032587282567e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966185775144803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24134.938057027277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.289719526445325, dt = 0.007966185775144803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.4%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3552527156068805e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966552461587352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22732.04356645227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2976857122204697, dt = 0.007966552461587352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3552527156068805e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966915898289318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22540.66208384214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.305652264682057, dt = 0.007966915898289318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0842021724855044e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796727517669579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23905.86753483166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3136191805803463, dt = 0.00796727517669579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.49 us (97.0%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-5.421010862427522e-20,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967629398525302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22748.35141464812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3215864557570423, dt = 0.007967629398525302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 259.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-5.421010862427522e-20,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796797767801997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23240.401192580408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3295540851555674, dt = 0.00796797767801997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 242.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968319144165495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23130.43210897567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3375220628335875, dt = 0.007968319144165495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 226.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968652942875371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23613.118959753072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.345490381977753, dt = 0.007968652942875371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-5.421010862427522e-20,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968978239133772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23101.041537971392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.353459034920628, dt = 0.007968978239133772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969294219091707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23689.09375937242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.361428013159762, dt = 0.007969294219091707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-5.421010862427522e-20,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969600092111043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23703.77341502722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3693973073788537, dt = 0.007969600092111043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969895092751257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22908.262807975778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.377366907470965, dt = 0.007969895092751257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970178482693803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23847.68130685595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.385336802563716, dt = 0.007970178482693803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970449552599134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.455e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19719.107655242013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.39330698104641, dt = 0.007970449552599134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970707623891696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23142.64637298022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4012774305990088, dt = 0.007970707623891696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.45 us (9.3%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 233.74 us (88.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970952050468274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23625.428299263524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4092481382229005, dt = 0.007970952050468274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,0,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971182220325222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23741.501861717872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.417219090273369, dt = 0.007971182220325222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,0,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971397557100498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23553.99492839373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.425190272493694, dt = 0.007971397557100498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,0,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971597521526458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23199.21228146368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4331616700507945, dt = 0.007971597521526458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,0,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971781612789662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23497.63128385336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.441133267572321, dt = 0.007971781612789662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971949369794144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23073.990240885494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4491050491851105, dt = 0.007971949369794144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972100372324951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23656.24058252306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.457076998554905, dt = 0.007972100372324951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972234242108803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23246.247407331364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4650490989272296, dt = 0.007972234242108803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.168404344971009e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972350643769244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23400.65967876054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4730213331693385, dt = 0.007972350643769244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797244928567373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23208.946959571214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4809936838131077, dt = 0.00797244928567373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972529920670431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23458.576299850447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4889661330987813, dt = 0.007972529920670431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1519648082658485e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972592346712876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23068.9225496152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.496938663019452, dt = 0.007972592346712876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1689054672109345e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972636407370741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23415.476053008177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5049112553661645, dt = 0.007972636407370741 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1180834903756764e-19,-1.0842021724855044e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972661992225544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22608.607103723738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5128838917735354, dt = 0.007972661992225544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1519648082658485e-19,-1.0842021724855044e-19,0)
sum a = (8.673617379884035e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972669037150099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23590.568544091755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.520856553765761, dt = 0.007972669037150099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.8%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 300.69 us (97.2%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-19,-1.0842021724855044e-19,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797265752447108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.536e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18683.996806153235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5288292228029112, dt = 0.00797265752447108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-19,-1.0842021724855044e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972627483014175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23894.754836630316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.536801880327382, dt = 0.007972627483014175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 258.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972578988031822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23222.165715996045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5447745078103963, dt = 0.007972578988031822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-20,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972512161013608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23221.085061350725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.552747086798428, dt = 0.007972512161013608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,0,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972427169379874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22678.78352872909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.560719598959442, dt = 0.007972427169379874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 263.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972324226059308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22582.71814169272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5686920261288217, dt = 0.007972324226059308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0842021724855044e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972203588951591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23349.23600472308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.576664350354881, dt = 0.007972203588951591 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972065560276546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23093.259102326494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5846365539438327, dt = 0.007972065560276546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,-1.0842021724855044e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971910485811456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23911.514009336144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.592608619504109, dt = 0.007971910485811456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 279.17 us (96.9%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971738754018477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23231.750017340502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6005805299899207, dt = 0.007971738754018477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971550795064534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23808.198410201574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.608552268743939, dt = 0.007971550795064534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971347079736103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22605.368291553717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6165238195390037, dt = 0.007971347079736103 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,5.421010862427522e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971128118251814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23913.762245315444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6244951666187397, dt = 0.007971128118251814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,5.421010862427522e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970894458975857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23853.55169591818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6324662947369917, dt = 0.007970894458975857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970646687035602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23814.784765885808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6404371891959677, dt = 0.007970646687035602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,5.421010862427522e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970385422846922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22426.87010112701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6484078358830034, dt = 0.007970385422846922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970111320551138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23150.507752163834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.65637822130585, dt = 0.007970111320551138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969825066367512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23205.61801846273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6643483326264015, dt = 0.007969825066367512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969527376865604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23664.215327413334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.672318157692769, dt = 0.007969527376865604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969218997161904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24137.018900305786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.680287685069634, dt = 0.007969218997161904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (-2.168404344971009e-19,-1.3010426069826053e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079689006990454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23922.74825851212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.688256904066796, dt = 0.0079689006990454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968573279036868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23999.600550935447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6962258047658416, dt = 0.007968573279036868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.710505431213761e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796823755638687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22997.657337153112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7041943780448783, dt = 0.00796823755638687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.81 us (93.8%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.710505431213761e-20,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967894371017564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23393.88763768538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7121626156012653, dt = 0.007967894371017564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 252.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,5.421010862427522e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967544581413615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22727.8934264573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.720130509972283, dt = 0.007967544581413615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,4.0657581468206416e-20,0)
sum a = (-1.0842021724855044e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967189062467519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23408.11775000715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7280980545536964, dt = 0.007967189062467519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,5.421010862427522e-20,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966828703284858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22584.976010850052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.736065243616164, dt = 0.007966828703284858 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.0657581468206416e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966464404955126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23374.101347508673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.744032072319449, dt = 0.007966464404955126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,3.7269449679189215e-20,0)
sum a = (-6.776263578034403e-21,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966097078293573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22552.1290268041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.751998536724404, dt = 0.007966097078293573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.2351647362715017e-20,0)
sum a = (2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965727641560016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23589.019531308983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7599646338026975, dt = 0.007965727641560016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,4.0657581468206416e-20,0)
sum a = (5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965357018160197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23030.136662883582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7679303614442574, dt = 0.007965357018160197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,2.710505431213761e-20,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796498613433551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23916.160629409293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.775895718462418, dt = 0.00796498613433551 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.3552527156068805e-20,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964615916847011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.84386337554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.783860704596753, dt = 0.007964615916847011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,2.710505431213761e-20,0)
sum a = (-1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964247290659306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23993.72161677084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7918253205136003, dt = 0.007964247290659306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.710505431213761e-20,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963881176630322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22585.17326575692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7997895678042597, dt = 0.007963881176630322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 306.89 us (97.1%)
LB move op cnt : 0
LB apply : 1.66 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963518489212557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22235.816401834367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.80775344898089, dt = 0.007963518489212557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963160134171659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23724.876745034842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.815716967470103, dt = 0.007963160134171659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962807006327881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.400e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20477.048522987516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8236801276042747, dt = 0.007962807006327881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962459987326136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23540.08658770212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8316429346106027, dt = 0.007962459987326136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.6263032587282567e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962119943440017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23330.804185789573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8396053945979287, dt = 0.007962119943440017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-1.6263032587282567e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961787723415367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22394.28463106384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.847567514541369, dt = 0.007961787723415367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961464156358539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23914.63867375589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.855529302264784, dt = 0.007961464156358539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-1.6263032587282567e-19,0)
sum a = (-4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961150049674669 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23376.880395685286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8634907664211426, dt = 0.007961150049674669 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-1.6263032587282567e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960846187060921 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24085.26459527861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8714519164708174, dt = 0.007960846187060921 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 390.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 265.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-1.6263032587282567e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960553326559695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23282.20685736559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8794127626578785, dt = 0.007960553326559695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960272198676434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23349.39115057575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8873733159844384, dt = 0.007960272198676434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-2.710505431213761e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960003504566745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22840.161727327923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8953335881831146, dt = 0.007960003504566745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959747914297155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23787.18103969283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.903293591687681, dt = 0.007959747914297155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 289.91 us (97.1%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-3.2526065174565133e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959506065183737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22495.030770300025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9112533396019784, dt = 0.007959506065183737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 259.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959278560212647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22842.678851881232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.919212845667162, dt = 0.007959278560212647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-4.336808689942018e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959065966546372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24111.861388632442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9271721242273747, dt = 0.007959065966546372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958868814119315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23780.826101861323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.935131190193921, dt = 0.007958868814119315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.51 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958687594326054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23539.28843902669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9430900590080404, dt = 0.007958687594326054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-20,-5.421010862427522e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958522758805507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23903.930782281837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9510487466023667, dt = 0.007958522758805507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958374718323832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23292.669228961753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.959007269361172, dt = 0.007958374718323832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795824384175881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23545.971100627306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.966965644079496, dt = 0.00795824384175881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958130455188091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23447.517751837946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9749238879212547, dt = 0.007958130455188091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 234.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958034841083548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23060.30495006462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9828820183764426, dt = 0.007958034841083548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.336808689942018e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957957237613576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23013.828438046112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9908400532175263, dt = 0.007957957237613576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.9%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 295.26 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.776263578034403e-21,-4.336808689942018e-19,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957897838055086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23026.57066751185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9987980104551397, dt = 0.007957897838055086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.682087709356578e-21,-4.336808689942018e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957856790316513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23625.858261007288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0067559082931945, dt = 0.007957856790316513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-20,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957834196573053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22760.343026567592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.014713765083511, dt = 0.007957834196573053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.4%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.31 us (96.2%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-20,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957830113014912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22817.671868197973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.022671599280084, dt = 0.007957830113014912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-20,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957844549709225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23080.297450012637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.030629429393099, dt = 0.007957844549709225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-20,-5.421010862427522e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795787747057593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23588.680672770082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.038587273942809, dt = 0.00795787747057593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-5.421010862427522e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957928793477677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22869.618062743255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.046545151413384, dt = 0.007957928793477677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-6.505213034913027e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957998390423519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23306.866280547285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.054503080206862, dt = 0.007957998390423519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958086087885901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23727.124272026715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.062461078597286, dt = 0.007958086087885901 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 279.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958191667230238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22133.119527494782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0704191646851715, dt = 0.007958191667230238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958314865255927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24072.26850680283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0783773563524015, dt = 0.007958314865255927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958455374847634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23186.68645289113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0863356712176575, dt = 0.007958455374847634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-6.505213034913027e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958612845735208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23328.37407345555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.094294126592505, dt = 0.007958612845735208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-20,-7.589415207398531e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958786885360405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23508.92302115298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.10225273943824, dt = 0.007958786885360405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,-7.589415207398531e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958977059848377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23382.769869771888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.110211526323601, dt = 0.007958977059848377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 260.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-7.047314121155779e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959182895081547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22397.88672937111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.11817050338345, dt = 0.007959182895081547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-7.589415207398531e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959403877873354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23667.636472761635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1261296862785315, dt = 0.007959403877873354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 261.81 us (96.7%)
LB move op cnt : 0
LB apply : 1.99 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959639457238954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22523.285835382878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1340890901564045, dt = 0.007959639457238954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-19,-8.131516293641283e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795988904575993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23962.267124197195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.142048729613643, dt = 0.00795988904575993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 255.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.131516293641283e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960152021039599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23340.197375279167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.150008618659403, dt = 0.007960152021039599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960427727245494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23842.546414320026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.157968770680443, dt = 0.007960427727245494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960715476735292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22619.885279144957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.165929198407689, dt = 0.007960715476735292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-9.215718466126788e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796101455176219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23480.97398959367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.173889913884424, dt = 0.00796101455176219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-9.215718466126788e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961324206255638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23299.77267921684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.181850928436186, dt = 0.007961324206255638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-9.75781955236954e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961643667673123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23982.601065649393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.189812252642442, dt = 0.007961643667673123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0028870095490916e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961972138918472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23473.114765389575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.197773896310115, dt = 0.007961972138918472 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 245.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.75781955236954e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962308800322008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23175.903305731572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.205735868449033, dt = 0.007962308800322008 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 432.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.75781955236954e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796265281167773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23287.26004866291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.213698177249356, dt = 0.00796265281167773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.75781955236954e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963003314332542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23853.629087171903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.221660830061033, dt = 0.007963003314332542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.622294280808852e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963359433322388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23550.162356951685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.229623833375366, dt = 0.007963359433322388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.622294280808852e-19,0)
sum a = (5.421010862427522e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963720279550111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23938.753765957943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.237587192808689, dt = 0.007963720279550111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.486769009248164e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796408495199956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23295.173243850782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2455509130882385, dt = 0.00796408495199956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.41900637346782e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964452539980658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23217.985216976664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.253514998040238, dt = 0.007964452539980658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.452887691357992e-19,0)
sum a = (-2.710505431213761e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964822125399706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23338.542127222572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.261479450580219, dt = 0.007964822125399706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.486769009248164e-19,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796519278504944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23887.817600300365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.269444272705619, dt = 0.00796519278504944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-9.486769009248164e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965563592913083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23068.681467930353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.277409465490669, dt = 0.007965563592913083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.486769009248164e-19,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965933622476664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22738.595177518895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.285375029083582, dt = 0.007965933622476664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.486769009248164e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966301949043946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23252.61822053748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.293340962706059, dt = 0.007966301949043946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.486769009248164e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966667652047957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23176.681814004434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.301307264655103, dt = 0.007966667652047957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.215718466126788e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967029817353624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23990.64761973377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.309273932307151, dt = 0.007967029817353624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.215718466126788e-19,0)
sum a = (-2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967387539545491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23934.977390883465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3172409621245045, dt = 0.007967387539545491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-9.215718466126788e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967739924194897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23132.822765512446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.32520834966405, dt = 0.007967739924194897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968086090100879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23736.49070578547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.333176089588244, dt = 0.007968086090100879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796842517149909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23142.148741981287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3411441756783455, dt = 0.00796842517149909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.75781955236954e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968756320233241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23510.84195594962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.349112600849844, dt = 0.007968756320233241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.3%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796907870788345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23583.082468043907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3570813571700775, dt = 0.00796907870788345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796939152784616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23628.206692780856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.365050435877961, dt = 0.00796939152784616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 277.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-9.215718466126788e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969693997360302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22900.331015544372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.373019827405807, dt = 0.007969693997360302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969985359474558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23019.918458361317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.380989521403167, dt = 0.007969985359474558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 279.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970264884950645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22175.31086540323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3889595067626415, dt = 0.007970264884950645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970531874097821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23819.822781678242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.396929771647592, dt = 0.007970531874097821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970785658533803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23174.15537467889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.40490030352169, dt = 0.007970785658533803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797102560286766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23852.32861525302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.412871089180224, dt = 0.00797102560286766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.34 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797125110630033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22584.630048618215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.420842114783092, dt = 0.00797125110630033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.21 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-8.673617379884035e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971461604138582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22696.39437905634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4288133658893925, dt = 0.007971461604138582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971656569218574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22976.098394240933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.436784827493531, dt = 0.007971656569218574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.75781955236954e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971835513235274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23469.518251247053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.44475648406275, dt = 0.007971835513235274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971997987974351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23681.14216936963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.452728319575985, dt = 0.007971997987974351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972143586443263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23046.951056943362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.460700317563959, dt = 0.007972143586443263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972271943898728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23968.582399868166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.468672461150402, dt = 0.007972271943898728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-8.673617379884035e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972382738767733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23479.58679296649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.476644733094301, dt = 0.007972382738767733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.0801931945661e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972475693459859 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22723.213757452264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4846171158330685, dt = 0.007972475693459859 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.0801931945661e-19,-8.673617379884035e-19,0)
sum a = (8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972550575068677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23147.427891566615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.492589591526529, dt = 0.007972550575068677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.147955830346444e-19,-8.673617379884035e-19,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972607195960437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24215.155084717688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5005621421015976, dt = 0.007972607195960437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.114074512456272e-19,-7.589415207398531e-19,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972645414248502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23457.69882542068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.508534749297558, dt = 0.007972645414248502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.0801931945661e-19,-6.505213034913027e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079726651341523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24031.605737885704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.516507394711807, dt = 0.0079726651341523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.0801931945661e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972666306239802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22947.892375525214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.52448005984596, dt = 0.007972666306239802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-8.673617379884035e-19,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972648927552957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22793.446258480188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5324527261522, dt = 0.007972648927552957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.85 us (96.7%)
LB move op cnt : 0
LB apply : 2.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.944667923005412e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972613041615707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22692.638838065177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.540425375079753, dt = 0.007972613041615707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.944667923005412e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797255873832456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24110.40085971336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.548397988121368, dt = 0.00797255873832456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972486153721982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23736.860678753274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.556370546859693, dt = 0.007972486153721982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972395469653263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23580.318852374123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.564343033013415, dt = 0.007972395469653263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972286913307659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23755.47103985597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.572315428483068, dt = 0.007972286913307659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 732.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 231.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972160756645058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24004.356619802154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.580287715396376, dt = 0.007972160756645058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 249.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972017315709628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23444.6776690764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.588259876153021, dt = 0.007972017315709628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.4%)
patch tree reduce : 552.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971856949832275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23113.02830054044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5962318934687305, dt = 0.007971856949832275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971680060723862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23680.619635018054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.604203750418563, dt = 0.007971680060723862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 288.71 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971487091461777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22842.59918589322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.612175430479287, dt = 0.007971487091461777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971278525372156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23468.232392305956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.620146917570748, dt = 0.007971278525372156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971054884810999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23043.779282988435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.62811819609612, dt = 0.007971054884810999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.1384122811097797e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970816729847034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23937.46117752819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.636089250980931, dt = 0.007970816729847034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970564656849975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22851.42064336843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.644060067710778, dt = 0.007970564656849975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970299296987686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23338.386506029314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6520306323676275, dt = 0.007970299296987686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797002131463616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22794.119024458883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.660000931664615, dt = 0.00797002131463616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1926223897340549e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969731405706462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23494.928142733166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6679709529792515, dt = 0.007969731405706462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.1384122811097797e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969430295892884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23963.731676459727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.675940684384958, dt = 0.007969430295892884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.1926223897340549e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969118738846856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24408.274041183937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6839101146808515, dt = 0.007969118738846856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968797514281277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24165.11746954909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.691879233419698, dt = 0.007968797514281277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.4%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968467426010184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23953.721103457414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.699848030933979, dt = 0.007968467426010184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796812929992869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22916.553015415375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.707816498359989, dt = 0.00796812929992869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967783981938432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.566e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18312.32323344902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.715784627659918, dt = 0.007967783981938432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 234.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (-1.0842021724855044e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967432335823761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.875e-03 | 0.3% | 1.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15299.94043833322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.723752411641857, dt = 0.007967432335823761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.111307226797642e-18,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967075241084148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23262.84029905087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.731719843977681, dt = 0.007967075241084148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.0977546996415732e-18,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966713590728243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24004.746191202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.739686919218765, dt = 0.007966713590728243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 271.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.84 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (-2.710505431213761e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966348289035235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.732e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16554.72605011739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.747653632809493, dt = 0.007966348289035235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.4%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 669.83 us (98.7%)
LB move op cnt : 0
LB apply : 1.83 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1163894244811678e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965980249289156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.702e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16847.229724522007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.755619981098529, dt = 0.007965980249289156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (0.5%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 586.82 us (98.4%)
LB move op cnt : 0
LB apply : 2.12 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965610391491844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.673e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17138.358088347217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.763585961347818, dt = 0.007965610391491844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.111307226797642e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965239640060373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23900.137360143683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.77155157173931, dt = 0.007965239640060373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964868921514658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23935.391832142894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.77951681137937, dt = 0.007964868921514658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 223.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796449916216114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23477.989834923257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.787481680300885, dt = 0.00796449916216114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964131285778272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23911.191768392033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.795446179463045, dt = 0.007964131285778272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 261.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.111307226797642e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963766211309623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22444.92090797923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8034103107488235, dt = 0.007963766211309623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.111307226797642e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963404850570335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23904.78491675274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.811374076960133, dt = 0.007963404850570335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0570971181733668e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963048105972656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22955.44951780473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.819337481810703, dt = 0.007963048105972656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962696868276222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23739.034489827292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.827300529916676, dt = 0.007962696868276222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962352014368507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23089.74348246938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.835263226784952, dt = 0.007962352014368507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962014405081189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23107.207060809094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.843225578799321, dt = 0.007962014405081189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961684883047543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.508e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19008.369005875797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.851187593204402, dt = 0.007961684883047543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 245.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.1384122811097797e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961364270606324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23367.008080008833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.85914927808745, dt = 0.007961364270606324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-1.1384122811097797e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961053367757147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23369.896660545324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.867110642358057, dt = 0.007961053367757147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.1384122811097797e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960752950172515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23649.893322137425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.875071695725814, dt = 0.007960752950172515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 251.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796046376727123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23665.248521574704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.883032448675986, dt = 0.00796046376727123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960186540357905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22929.143953427832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.890992912443258, dt = 0.007960186540357905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.2468324983583301e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959921960833205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23635.791305611354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.898953098983616, dt = 0.007959921960833205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795967068847903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23332.50204698752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.906913020944449, dt = 0.00795967068847903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.1926223897340549e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959433349822869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23794.501926096236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.914872691632929, dt = 0.007959433349822869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959210536585304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23147.887741686147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.922832124982752, dt = 0.007959210536585304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1926223897340549e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959002804214332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23016.470370831255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.930791335519337, dt = 0.007959002804214332 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795881067051016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22887.486985721163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.938750338323551, dt = 0.00795881067051016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958634614343634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23561.02837830622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.946709148994061, dt = 0.007958634614343634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.0842021724855044e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958475074471517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23001.483287937226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9546677836084045, dt = 0.007958475074471517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-18,-1.0842021724855044e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958332448451412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23619.39102470673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.962626258682876, dt = 0.007958332448451412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.0842021724855044e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958207091658873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23270.677249417888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.970584591131328, dt = 0.007958207091658873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.179069862577986e-18,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958099316409142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24328.51017989961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.978542798222986, dt = 0.007958099316409142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1655173354219173e-18,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795800939118559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22749.07197658556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.986500897539395, dt = 0.00795800939118559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.179069862577986e-18,-1.1926223897340549e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957937539976622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23046.02297799568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.994458906930581, dt = 0.007957937539976622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1824579943670033e-18,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957883941722789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23407.821415108592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.002416844470558, dt = 0.007957883941722789 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.187540192050529e-18,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957848729875224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24486.675752635598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.01037472841228, dt = 0.007957848729875224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1926223897340549e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795783199206662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23874.4613773118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.018332577142155, dt = 0.00795783199206662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957833769895445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22985.858731517746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.026290409134222, dt = 0.007957833769895445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.3010426069826053e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957854058823887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23519.783367656255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.034248242904117, dt = 0.007957854058823887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-18,-1.3010426069826053e-18,0)
sum a = (0,3.2526065174565133e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795789280818983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23677.19927052147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.042206096962941, dt = 0.00795789280818983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957949921332806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23311.900476259107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.050163989771131, dt = 0.007957949921332806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.3010426069826053e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958025255833534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23158.016185362052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.058121939692464, dt = 0.007958025255833534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958118623866597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23387.99526589116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0660799649482975, dt = 0.007958118623866597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795822979266535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22602.762144614044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.074038083572164, dt = 0.00795822979266535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958358485097888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.353e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21174.123962691123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.081996313364829, dt = 0.007958358485097888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.4094628242311558e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958504380352774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22958.422185500574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.089954671849927, dt = 0.007958504380352774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958667114732868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24110.75372826711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.09791317623028, dt = 0.007958667114732868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958846282555297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23148.10905496522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.105871843345013, dt = 0.007958846282555297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959041437155466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23202.336941974467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1138306896275685, dt = 0.007959041437155466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.463672932855431e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959252091992672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22621.642030160834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.121789731064724, dt = 0.007959252091992672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795947772185465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23820.190814842146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.129748983156717, dt = 0.00795947772185465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959717764158205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.7% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22897.30282077924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.137708460878572, dt = 0.007959717764158205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959971620342711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23623.838656197753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.14566817864273, dt = 0.007959971620342711 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960238657353232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23004.97803395186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1536281502630725, dt = 0.007960238657353232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960518209209554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23114.88142562632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.161588388920426, dt = 0.007960518209209554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960809578657456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23114.01522860415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.169548907129635, dt = 0.007960809578657456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.4094628242311558e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961112038898148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22744.52038129612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.177509716708292, dt = 0.007961112038898148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961424835391685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23309.362489850613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1854708287471905, dt = 0.007961424835391685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.4094628242311558e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961747187730035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23287.512589800914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193432253582582, dt = 0.007961747187730035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.4094628242311558e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962078291575183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23445.32903931574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.201394000770312, dt = 0.007962078291575183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 267.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962417320657555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22581.708398627186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.209356079061887, dt = 0.007962417320657555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.3823577699190182e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962763428829935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23714.315317519653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2173184963825445, dt = 0.007962763428829935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.65 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3823577699190182e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963115752171762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23540.151068972256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.225281259811374, dt = 0.007963115752171762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.3688052427629493e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963473411138759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23784.043404342556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.233244375563546, dt = 0.007963473411138759 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.3688052427629493e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796383551275249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22471.970715228774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2412078489746845, dt = 0.00796383551275249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.362028979184915e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964201152824573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23679.104966706116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.249171684487437, dt = 0.007964201152824573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.359487880343152e-18,0)
sum a = (-1.3552527156068805e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796456941820997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23062.080291959526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2571358856402615, dt = 0.00796456941820997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 236.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3518645838178633e-18,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964939389083834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23139.981216456865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.265100455058471, dt = 0.007964939389083834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3417001884508117e-18,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965310141236269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22714.245269375697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.273065394447555, dt = 0.007965310141236269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (82.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3552527156068805e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965680748379299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23132.033568498427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.281030704588792, dt = 0.007965680748379299 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 254.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3688052427629493e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966050284460265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23300.90793309299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.288996385337171, dt = 0.007966050284460265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966417825975977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23314.51092977216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.296962435621631, dt = 0.007966417825975977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966782454281743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23258.38797915237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.304928853447607, dt = 0.007966782454281743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967143257889518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22967.760584127227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.312895635901889, dt = 0.007967143257889518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,-1.3823577699190182e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796749933474944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23989.069842158573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3208627791597785, dt = 0.00796749933474944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 284.26 us (97.0%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967849794508956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.321e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21708.0165238396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.328830278494528, dt = 0.007967849794508956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968193760743906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23982.35139314618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.336798128289037, dt = 0.007968193760743906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968530373155841 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22444.03566155596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.344766322049781, dt = 0.007968530373155841 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968858789730087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23472.42703882193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3527348524229375, dt = 0.007968858789730087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969178188849074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23385.775156455988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.360703711212667, dt = 0.007969178188849074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.37 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5720931501039814e-18,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969487771355465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23600.47274902182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.368672889401516, dt = 0.007969487771355465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796978676255996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23911.193175287237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.376642377172872, dt = 0.00796978676255996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797007441418856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23936.867738189012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.384612163935432, dt = 0.00797007441418856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.2468324983583301e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970350006264311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23512.624757909434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.392582238349621, dt = 0.007970350006264311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797061284891878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23478.74757899469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.400552588355885, dt = 0.00797061284891878 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970862284128457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23293.701358376227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.408523201204804, dt = 0.007970862284128457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 277.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971097687371873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22709.872029692837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4164940634889325, dt = 0.007971097687371873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,-1.1926223897340549e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971318469202853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22851.88034957857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.424465161176304, dt = 0.007971318469202853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,6.505213034913027e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971524076736097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23130.22624178282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4324364796455065, dt = 0.007971524076736097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971713995041133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23878.9925313366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.440408003722243, dt = 0.007971713995041133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971887748441023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23294.461069915502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.448379717717284, dt = 0.007971887748441023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972044901712525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23737.21870371787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.456351605465725, dt = 0.007972044901712525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972185061184538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.470e-03 | 0.4% | 1.7% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19517.82530284932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4643236503674375, dt = 0.007972185061184538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.1926223897340549e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797230787573198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22613.597391201565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.472295835428622, dt = 0.00797230787573198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797241303766258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22956.445094800398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.480268143304354, dt = 0.00797241303766258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972500283494135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23374.82626940617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.488240556342016, dt = 0.007972500283494135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3484764520288461e-18,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972569394620356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23642.265476559456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4962130566255105, dt = 0.007972569394620356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3417001884508117e-18,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,4.235164736271502e-22,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972620197863468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24104.194300432075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5041856260201305, dt = 0.007972620197863468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3467823861343375e-18,-1.1926223897340549e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972652565912182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23881.898434863906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.512158246217994, dt = 0.007972652565912182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3484764520288461e-18,-1.1926223897340549e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972666417643768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23742.068539969605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.520130898783906, dt = 0.007972666417643768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972661718329584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24050.033939257828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.528103565201549, dt = 0.007972661718329584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972638479723316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23034.071843070775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.536076226919879, dt = 0.007972638479723316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972596760031854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23278.98490027377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.544048865399602, dt = 0.007972596760031854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972536663768735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23725.161737753115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.552021462159634, dt = 0.007972536663768735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797245834149065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23905.756720265737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.559993998823403, dt = 0.00797245834149065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972361989417613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23097.714141954453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.567966457164894, dt = 0.007972361989417613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 262.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797224784893782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22361.4728409507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.575938819154311, dt = 0.00797224784893782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972116205998471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23433.23774141558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.583911067003249, dt = 0.007972116205998471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971967390384133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.388e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20681.38379869071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.591883183209247, dt = 0.007971967390384133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797180177488449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.513e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18972.26695122641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.599855150599631, dt = 0.00797180177488449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.40 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-8.673617379884035e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971619774353744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23064.387101573175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6078269523745155, dt = 0.007971619774353744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.75781955236954e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971421844663963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23011.430559302993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6157985721488695, dt = 0.007971421844663963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971208481555189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23997.33631319607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.623769993993533, dt = 0.007971208481555189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.09 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970980219385285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22247.095519313767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.631741202475088, dt = 0.007970980219385285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-9.215718466126788e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970737629782683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23451.20595556246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.639712182694473, dt = 0.007970737629782683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 238.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797048132020565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23517.298651738725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.647682920324256, dt = 0.00797048132020565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.0299920638612292e-18,0)
sum a = (-8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970211932411594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23896.98628391518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.655653401644461, dt = 0.007970211932411594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.0299920638612292e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969930140840641 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23402.356124181002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.663623613576872, dt = 0.007969930140840641 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.0299920638612292e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969636650917355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22843.603310668645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.671593543717713, dt = 0.007969636650917355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969332197275188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23211.95175792717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.67956318036863, dt = 0.007969332197275188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.0842021724855044e-18,0)
sum a = (-2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969017541908164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23701.144850145913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.687532512565905, dt = 0.007969017541908164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 249.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.111307226797642e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968693472254445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23347.5290910573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.695501530107814, dt = 0.007968693472254445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.1384122811097797e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968360799216881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23842.302258222586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7034702235800685, dt = 0.007968360799216881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.111307226797642e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968020355125423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23748.9528236293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.711438584379286, dt = 0.007968020355125423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.66 us (88.2%)
LB move op cnt : 0
LB apply : 24.01 us (9.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.111307226797642e-18,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967672991646737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23208.93414689821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.719406604734411, dt = 0.007967672991646737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.111307226797642e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796731957764624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23545.7514397609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.727374277726058, dt = 0.00796731957764624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.0977546996415732e-18,0)
sum a = (-5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796696099700812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22663.475349980137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.735341597303704, dt = 0.00796696099700812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.111307226797642e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796659814641874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23002.77786716405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.743308558300712, dt = 0.00796659814641874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 268.57 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.1045309632196076e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796623193311919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23078.525864271236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7512751564471305, dt = 0.00796623193311919 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.1049544796932348e-18,0)
sum a = (1.3552527156068805e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965863272632502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23248.21085950852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.75924138838025, dt = 0.007965863272632502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.1045309632196076e-18,0)
sum a = (5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965493086471463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22774.521239285248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7672072516528825, dt = 0.007965493086471463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.111307226797642e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965122299832606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23521.314296387012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.775172744739354, dt = 0.007965122299832606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.1384122811097797e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964751839282327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23530.680568487216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.783137867039187, dt = 0.007964751839282327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964382630440824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23715.57839760304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.79110261887847, dt = 0.007964382630440824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.1655173354219173e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964015595669718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23313.04170359794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.79906700150891, dt = 0.007964015595669718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963651651769115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23725.76869143005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.80703101710458, dt = 0.007963651651769115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.1655173354219173e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963291707689802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23165.601367165767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.814994668756349, dt = 0.007963291707689802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 242.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.1926223897340549e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962936662266365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23128.61600123541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.82295796046404, dt = 0.007962936662266365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.87 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.2468324983583301e-18,0)
sum a = (-2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962587401976695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22808.812705207518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.830920897126306, dt = 0.007962587401976695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.2468324983583301e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796224479873361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22681.07244896407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.838883484528282, dt = 0.00796224479873361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 225.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.2468324983583301e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961909707713892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23760.506704334057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.846845729327016, dt = 0.007961909707713892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.43 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.2468324983583301e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961582965230144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22434.7960781163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.854807639034729, dt = 0.007961582965230144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.5%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 222.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961265386650746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23999.486440447807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.862769221999959, dt = 0.007961265386650746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960957764372917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23181.549746304197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.870730487386609, dt = 0.007960957764372917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796066086585392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.325e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21632.59652146469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.878691445150983, dt = 0.00796066086585392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796037543170518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23397.44109044619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.886652106016837, dt = 0.00796037543170518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.4094628242311558e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960102173853971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24234.731219213212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.894612481448542, dt = 0.007960102173853971 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959841773777144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23569.89105634979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.902572583622396, dt = 0.007959841773777144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079595948808112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23241.073660321024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.910532425396173, dt = 0.0079595948808112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959362110542762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23789.909505505944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.918492020276984, dt = 0.007959362110542762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.4094628242311558e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959144043283345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23672.471192264144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.926451382387527, dt = 0.007959144043283345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958941222632208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23585.716130838446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.934410526430811, dt = 0.007958941222632208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958754154130566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22935.23664032527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.942369467653443, dt = 0.007958754154130566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958583304010575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23058.771370383187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.950328221807574, dt = 0.007958583304010575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958429098041972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23589.1224170624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.958286805111585, dt = 0.007958429098041972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.6263032587282567e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795829192047924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23215.051236947136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.966245234209627, dt = 0.00795829192047924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958172113111731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.312e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21834.912655112723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.974203526130106, dt = 0.007958172113111731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958069974419052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23831.659072436596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9821616982432175, dt = 0.007958069974419052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 269.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957985758833754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22814.51378226078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.990119768217636, dt = 0.007957985758833754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.3%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.145188544687814e-18,-1.6263032587282567e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957919676113073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23282.939265691075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.99807775397647, dt = 0.007957919676113073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1485766764768313e-18,-1.6263032587282567e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957871890821167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23090.97497663141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.006035673652583, dt = 0.007957871890821167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 275.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1485766764768313e-18,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957842521923173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22104.295740186702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.013993545543404, dt = 0.007957842521923173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1519648082658485e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957831642491935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23050.917168419197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.021951388065328, dt = 0.007957831642491935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.82 us (96.2%)
LB move op cnt : 0
LB apply : 2.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1519648082658485e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957839279528239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22832.231031293657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.02990921970782, dt = 0.007957839279528239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.5%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1519648082658485e-18,-1.734723475976807e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957865413894824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23082.908970584715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.037867058987348, dt = 0.007957865413894824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1655173354219173e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957909980364414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23441.20370500916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.045824924401242, dt = 0.007957909980364414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.734723475976807e-18,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957972867781656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23496.22394307451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0537828343816065, dt = 0.007957972867781656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958053919338499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23059.29148346293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.061740807249388, dt = 0.007958053919338499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2197274440461925e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958152932962422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23552.95828934456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.069698861168726, dt = 0.007958152932962422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958269661816555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22679.961905242886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.077657014101689, dt = 0.007958269661816555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 243.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958403814910442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23171.88971106452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.085615283763506, dt = 0.007958403814910442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958555057820062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23604.95438778649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0935736875784166, dt = 0.007958555057820062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958723013515372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23439.188419770035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.101532242636237, dt = 0.007958723013515372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.6263032587282567e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958907263293274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23330.317381542623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.109490965649752, dt = 0.007958907263293274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959107347813901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23492.98348218457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1174498729130455, dt = 0.007959107347813901 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.5720931501039814e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959322768237702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23427.954355605885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.125408980260859, dt = 0.007959322768237702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.5720931501039814e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959552987460513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23058.173380459823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.133368303029097, dt = 0.007959552987460513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.5720931501039814e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959797431443722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23792.371960073007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.141327856016558, dt = 0.007959797431443722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.6805133673525319e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796005549063634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.514e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18927.25065915973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.149287653448002, dt = 0.00796005549063634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.6805133673525319e-18,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960326521485431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23246.411186925463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.157247708938638, dt = 0.007960326521485431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,-1.6805133673525319e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960609848031385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23402.61069958127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1652080354601235, dt = 0.007960609848031385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-1.6805133673525319e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960904763584126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23115.772832427505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.173168645308155, dt = 0.007960904763584126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.734723475976807e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961210532476145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23281.810755161656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.181129550071739, dt = 0.007961210532476145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6263032587282567e-18,0)
sum a = (2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961526391888192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23767.86230146836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1890907606042145, dt = 0.007961526391888192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961851553743125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23684.974056800886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.197052286996103, dt = 0.007961851553743125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962185206663365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24123.736351472915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.205014138549846, dt = 0.007962185206663365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6534083130403943e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962526517987085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22744.659966378083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.212976323756509, dt = 0.007962526517987085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962874635838349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22818.74933510494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2209388502744964, dt = 0.007962874635838349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6805133673525319e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963228691245985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23732.798309282683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.228901724910335, dt = 0.007963228691245985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 397.47 us (97.5%)
LB move op cnt : 0
LB apply : 2.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6940658945086007e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796358780030612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.412e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20305.322807371398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2368649536015806, dt = 0.00796358780030612 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6940658945086007e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963951066382964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23438.076485334528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.244828541401887, dt = 0.007963951066382964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6940658945086007e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964317582342487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23724.005857705622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.25279249246827, dt = 0.007964317582342487 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6940658945086007e-18,0)
sum a = (-2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964686432813456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23673.08893355705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.260756810050612, dt = 0.007964686432813456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.700842158086635e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965056696470218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23132.834814155874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.268721496483425, dt = 0.007965056696470218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6940658945086007e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965427448331593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22269.202804322078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.276686553179895, dt = 0.007965427448331593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6940658945086007e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796579776207017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23084.255194760422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.284651980628227, dt = 0.00796579776207017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6534083130403943e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966166712326245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22665.77295985998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.292617778390297, dt = 0.007966166712326245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966533377020602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23830.78100096765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.300583945102623, dt = 0.007966533377020602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.84 us (97.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.7076184216646695e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966896839660401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22462.08297581696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.308550478479644, dt = 0.007966896839660401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967256191632365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23372.377404728486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.316517375319304, dt = 0.007967256191632365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 300.01 us (96.8%)
LB move op cnt : 0
LB apply : 2.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (72.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.734723475976807e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967610534477485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22253.368823751705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.324484631510936, dt = 0.007967610534477485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 256.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.39 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967958982141582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23099.693751193056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.332452242045414, dt = 0.007967958982141582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968300663195947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23634.85322953951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.340420201027555, dt = 0.007968300663195947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968634723022543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23159.26999277867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.348388501690751, dt = 0.007968634723022543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968960325958183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23304.41716211348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.356357136413774, dt = 0.007968960325958183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969276657392213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22537.183642030166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.364326096739732, dt = 0.007969276657392213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969582925812416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23919.53060923299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.372295373397124, dt = 0.007969582925812416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6805133673525319e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969878364793907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23074.137978313334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.380264956322937, dt = 0.007969878364793907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079701622349259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22971.90287574155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.388234834687731, dt = 0.0079701622349259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6263032587282567e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970433825671462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22206.593305909668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.396204996922657, dt = 0.007970433825671462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6263032587282567e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970692457155459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22665.70752023962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.404175430748329, dt = 0.007970692457155459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (61.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.6263032587282567e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970937481876099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23532.420979661176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.412146123205485, dt = 0.007970937481876099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 247.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079711682863357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22950.29615033024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.420117060687361, dt = 0.0079711682863357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971384292586406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22811.66349286268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.428088228973697, dt = 0.007971384292586406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797158495968698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23671.968909177573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.436059613266283, dt = 0.00797158495968698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971769785066748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22950.32485292874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.444031198225971, dt = 0.007971769785066748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.18 us (96.6%)
LB move op cnt : 0
LB apply : 2.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.6263032587282567e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971938305793356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22741.12806061076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.452002968011037, dt = 0.007971938305793356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972090099740814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23397.50175964943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.45997490631683, dt = 0.007972090099740814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 271.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972224786655057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22742.2220383446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.467946996416571, dt = 0.007972224786655057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797234202911402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24022.071197343514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.475919221203226, dt = 0.00797234202911402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0706496453294356e-18,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972441533379874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22968.319644428924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.48389156323234, dt = 0.007972441533379874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0706496453294356e-18,-1.6263032587282567e-18,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972523050141159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22816.576876367402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.49186400476572, dt = 0.007972523050141159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972586375142846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23107.422903429244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.499836527815861, dt = 0.007972586375142846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0554030522788582e-18,-1.6263032587282567e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972631349702747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23389.259320042736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.507809114191004, dt = 0.007972631349702747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (1.3%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797265786111281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23605.844456924744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.515781745540707, dt = 0.00797265786111281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.8431436932253575e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972665842924446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23634.925652873888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.52375440340182, dt = 0.007972665842924446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.8431436932253575e-18,0)
sum a = (-8.673617379884035e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972655275116865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23790.993276333178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.531727069244744, dt = 0.007972655275116865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.043544591017298e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972626184148237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23810.935669516122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.539699724519861, dt = 0.007972626184148237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.6263032587282567e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972578642889371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 2.2% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22556.25162615548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.547672350704009, dt = 0.007972578642889371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,-1.734723475976807e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972512770440131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22769.814695633337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.555644929346899, dt = 0.007972512770440131 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.734723475976807e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972428731829096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23530.848041832938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.563617442117339, dt = 0.007972428731829096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.111307226797642e-18,-1.734723475976807e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972326737597176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23277.2396946825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.571589870849168, dt = 0.007972326737597176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972207043266297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23474.754954048836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.579562197586766, dt = 0.007972207043266297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.6263032587282567e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972069948694573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23209.260881289392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.587534404630032, dt = 0.007972069948694573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-1.5178830414797062e-18,0)
sum a = (-8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971915797319535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23991.643572081604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.595506474578727, dt = 0.007971915797319535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 291.14 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971744975291517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22249.77681170176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.603478390376046, dt = 0.007971744975291517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971557910499314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23613.901859890797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.611450135351338, dt = 0.007971557910499314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.3552527156068805e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797135507149077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23021.423322081737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.619421693261837, dt = 0.00797135507149077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971136966290943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23058.81381025013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.627393048333328, dt = 0.007971136966290943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970904141121117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23151.00956875769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.635364185299619, dt = 0.007970904141121117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970657179021722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23531.50208951324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.643335089440741, dt = 0.007970657179021722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 253.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970396698382997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22603.368361893634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.651305746619762, dt = 0.007970396698382997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970123351386924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23577.470646046408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.659276143318145, dt = 0.007970123351386924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969837822364687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24082.802923090094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.667246266669532, dt = 0.007969837822364687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969540826073757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22946.37751486992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.675216104491897, dt = 0.007969540826073757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969233105898999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23848.801733872144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.6831856453179705, dt = 0.007969233105898999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968915431982651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22581.84398455074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.69115487842387, dt = 0.007968915431982651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.3010426069826053e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968588599287632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23363.258495203285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.699123793855852, dt = 0.007968588599287632 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.2739375526704677e-18,0)
sum a = (2.168404344971009e-19,-1.3010426069826053e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968253425599469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22424.602139387876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.70709238245514, dt = 0.007968253425599469 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.2739375526704677e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967910749471724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23578.105276612012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.715060635880739, dt = 0.007967910749471724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.3010426069826053e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967561428120284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22896.258704965512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7230285466302115, dt = 0.007967561428120284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.3145951341386741e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967206335271832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23236.983437191055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.730996108058332, dt = 0.007967206335271832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 303.47 us (97.0%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3145951341386741e-18,0)
sum a = (-5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796684635897201 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21991.678390406047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7389633143936045, dt = 0.00796684635897201 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3213713977167085e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796648239935876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24132.350412924177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7469301607525765, dt = 0.00796648239935876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3349239248727773e-18,0)
sum a = (-1.6940658945086007e-21,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966115366406568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23644.909744674853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.754896643151935, dt = 0.007966115366406568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3383120566617945e-18,0)
sum a = (2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965746177647294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22952.21744254237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.762862758518342, dt = 0.007965746177647294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3417001884508117e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796537575587329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23643.309390092287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.770828504695989, dt = 0.00796537575587329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3417001884508117e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965005026828625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23085.963843150894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.778793880451862, dt = 0.007965005026828625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3417001884508117e-18,0)
sum a = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796463491689421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23877.982119907003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.78675888547869, dt = 0.00796463491689421 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.328147661294743e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796426635077265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23601.598947715174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.794723520395585, dt = 0.00796426635077265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 286.79 us (97.1%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963900249178537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22717.364738474706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8026877867463575, dt = 0.007963900249178537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 279.24 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963537526540042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22061.174770918635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.810651686995536, dt = 0.007963537526540042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3823577699190182e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963179088717449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23459.447484396485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.818615224522076, dt = 0.007963179088717449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962825830744329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22638.96105734463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.826578403610793, dt = 0.007962825830744329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 280.00 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962478634597002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23165.445334274715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8345412294415375, dt = 0.007962478634597002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 300.21 us (97.1%)
LB move op cnt : 0
LB apply : 1.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962138366997652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22589.090290841094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.842503708076134, dt = 0.007962138366997652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961805877256714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24026.14716856748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.850465846443132, dt = 0.007961805877256714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961481995159704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22715.583986137386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.858427652320389, dt = 0.007961481995159704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961167528903693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23562.9298082456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.866389134315549, dt = 0.007961167528903693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960863263088579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23914.551646265147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.874350301844452, dt = 0.007960863263088579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960569956767938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23280.195334814627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.882311165107541, dt = 0.007960569956767938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.5720931501039814e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960288341564334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23855.349708875503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.890271735064308, dt = 0.007960288341564334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.5720931501039814e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960019119853563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23104.75698364811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.898232023405873, dt = 0.007960019119853563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.047314121155779e-19,-1.6263032587282567e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959762963022364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24132.645718076554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.906192042525727, dt = 0.007959762963022364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.24 us (89.4%)
LB move op cnt : 0
LB apply : 1.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959520509803725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23220.63556136886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.914151805488749, dt = 0.007959520509803725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959292364693856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24110.3625735874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.922111325998553, dt = 0.007959292364693856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959079096454677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23611.675133349003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.930070618363247, dt = 0.007959079096454677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958881236705385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23686.32550578738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.938029697459701, dt = 0.007958881236705385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.2341624917916505e-19,-1.734723475976807e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958699278606556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23249.39442307689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.945988578696406, dt = 0.007958699278606556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958533675639829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23451.93058464538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.953947277975013, dt = 0.007958533675639829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958384840486327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23586.431378222474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.961905811650653, dt = 0.007958384840486327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958253144006187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23600.775835063178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.969864196491139, dt = 0.007958253144006187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958138914321953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24012.61183445821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.977822449635146, dt = 0.007958138914321953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.827586677109586e-19,-1.4094628242311558e-18,0)
sum a = (8.673617379884035e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958042436007826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23025.800852545304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.985780588549468, dt = 0.007958042436007826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.827586677109586e-19,-1.4094628242311558e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795796394938676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23432.502739722175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.993738630985476, dt = 0.00795796394938676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.54 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.759824041329242e-19,-1.4094628242311558e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957903649937138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22408.01549454583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.001696594934863, dt = 0.007957903649937138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.785235029746871e-19,-1.3010426069826053e-18,0)
sum a = (8.673617379884035e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957861687810288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23993.01622298018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0096544985848, dt = 0.007957861687810288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.89534931288993e-19,-1.3010426069826053e-18,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795783816746023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23661.342818350262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.017612360272611, dt = 0.00795783816746023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.827586677109586e-19,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957833147386241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23668.70134011754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.025570198440071, dt = 0.007957833147386241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3010426069826053e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079578466399891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22808.912460492298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.033528031587457, dt = 0.0079578466399891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.1926223897340549e-18,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957878611541175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22611.997723634304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.041485878227446, dt = 0.007957878611541175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957928982270534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22741.560931455664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.049443756838987, dt = 0.007957928982270534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.692061405548898e-19,-1.0842021724855044e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957997626558777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23733.03029960966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.057401685821258, dt = 0.007957997626558777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.1926223897340549e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958084373252192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23554.534505446212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0653596834478165, dt = 0.007958084373252192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958189006085406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23671.604459248363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.073317767821068, dt = 0.007958189006085406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958311264216608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24260.346968974525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.081275956827154, dt = 0.007958311264216608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958450842872992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24125.436238930717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.089234268091371, dt = 0.007958450842872992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958607394104832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21963.95743604502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.097192718934243, dt = 0.007958607394104832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958780527646507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23397.55662689687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.105151326328349, dt = 0.007958780527646507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958969811882297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23995.057128080698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.113110106855995, dt = 0.007958969811882297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 284.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795917477491469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22633.267945226555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.121069076667878, dt = 0.00795917477491469 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3552527156068805e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959394905732572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23264.82575123062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.129028251442793, dt = 0.007959394905732572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959629655476589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23089.30029060214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.136987646348525, dt = 0.007959629655476589 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 232.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959878438798515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23242.904978943425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.144947276004002, dt = 0.007959878438798515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.60 us (96.7%)
LB move op cnt : 0
LB apply : 2.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960140635311462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22982.347032383703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.152907154442801, dt = 0.007960140635311462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960415591127383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23764.05723898748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.160867295078112, dt = 0.007960415591127383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.4094628242311558e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960702620478061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.360e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21066.220406070028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.168827710669239, dt = 0.007960702620478061 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 621.00 ns (0.3%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961001007415903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23411.746367129905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.176788413289717, dt = 0.007961001007415903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 240.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.463672932855431e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796131000759014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23625.115202219484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1847494142971335, dt = 0.00796131000759014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.4094628242311558e-18,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961628850094318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22178.993804062462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.192710724304724, dt = 0.007961628850094318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.4094628242311558e-18,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961956739380497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23933.951150140743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.200672353154818, dt = 0.007961956739380497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3823577699190182e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962292857235506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24065.398087877053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.208634309894199, dt = 0.007962292857235506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3823577699190182e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962636364814504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23975.0869123047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2165966027514346, dt = 0.007962636364814504 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3823577699190182e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962986404726709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22834.714953978633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.224559239116249, dt = 0.007962986404726709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3823577699190182e-18,0)
sum a = (1.0842021724855044e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963342103168411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23663.075439876964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.232522225520976, dt = 0.007963342103168411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 278.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3823577699190182e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963702572097851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22507.66197985734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.240485567624144, dt = 0.007963702572097851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3755815063409838e-18,0)
sum a = (2.710505431213761e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964066911446663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23932.790660026432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.248449270196241, dt = 0.007964066911446663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.370499308657458e-18,0)
sum a = (-3.3881317890172014e-21,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964434211362482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22955.13390959385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.256413337107688, dt = 0.007964434211362482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3654171109739321e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796480355447718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24237.638687710856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.26437777131905, dt = 0.00796480355447718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3688052427629493e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796517401819496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22812.145452787663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2723425748735275, dt = 0.00796517401819496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3417001884508117e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965544676994889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22873.76981827728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2803077488917225, dt = 0.007965544676994889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 270.40 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,-1.3417001884508117e-18,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965914604741888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22446.971218101004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.288273293568717, dt = 0.007965914604741888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796628287700062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23383.06310930396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.296239208173459, dt = 0.00796628287700062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3823577699190182e-18,0)
sum a = (-2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966648573346365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23270.260713479005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3042054910504595, dt = 0.007966648573346365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967010779667187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22625.204017045395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.312172139623806, dt = 0.007967010779667187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 252.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.4094628242311558e-18,0)
sum a = (-2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967368590451546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23193.21410002561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.320139150403473, dt = 0.007967368590451546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 240.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967721111055624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23465.740767008145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.328106518993924, dt = 0.007967721111055624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968067459944753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22372.039587186173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.33607424010498, dt = 0.007968067459944753 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.1%)
LB compute : 301.59 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968406770903068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22398.045790642507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3440423075649255, dt = 0.007968406770903068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968738195206023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23589.6497728726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.352010714335829, dt = 0.007968738195206023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.49 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969060903750111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23102.40491075648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.359979452531035, dt = 0.007969060903750111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796937408913445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23317.805739675256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.367948513434785, dt = 0.00796937408913445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.06 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.2468324983583301e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969676967688872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22611.85972238477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.375917887523919, dt = 0.007969676967688872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796996878144344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23515.30629139437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.383887564491608, dt = 0.00796996878144344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970248800034233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23368.249787790817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.391857533273051, dt = 0.007970248800034233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797051632254061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23759.910567847808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.399827782073086, dt = 0.00797051632254061 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970770679249213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23294.76190917173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.407798298395626, dt = 0.007970770679249213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797101123334017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23504.855369910245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.415769069074876, dt = 0.00797101123334017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 236.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971237382491137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23605.31869967138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.423740080308216, dt = 0.007971237382491137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 248.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971448560395096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23500.052473803284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.431711317690707, dt = 0.007971448560395096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971644238187933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23339.038384995154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.439682766251102, dt = 0.007971644238187933 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.607859233063394e-19,-1.4094628242311558e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971823925782112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23394.712295486497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.44765441048929, dt = 0.007971823925782112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-1.4094628242311558e-18,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971987173103046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23737.028664361995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.455626234415072, dt = 0.007971987173103046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972133571224869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22872.480823346687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.463598221588175, dt = 0.007972133571224869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-1.1926223897340549e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972262753402723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23549.634776722796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.4715703551593995, dt = 0.007972262753402723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972374395998853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23112.08329991343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.479542617912802, dt = 0.007972374395998853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2012834183813297e-19,-1.3010426069826053e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797246821930009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24006.828704589374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.487514992308801, dt = 0.00797246821930009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1335207826009857e-19,-1.4094628242311558e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972543988224627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22525.303367609707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.495487460528102, dt = 0.007972543988224627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2351647362715017e-19,-1.4094628242311558e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972601512916172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23218.728876549023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.503460004516326, dt = 0.007972601512916172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.58 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1928130889087867e-19,-1.3010426069826053e-18,0)
sum a = (-8.673617379884035e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972640649223999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22391.156808263757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.511432606029243, dt = 0.007972640649223999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1335207826009857e-19,-1.1926223897340549e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972661299067598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23869.82425180461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.519405246678467, dt = 0.007972661299067598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0657581468206416e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797266341068501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23278.881601890876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5273779079775345, dt = 0.00797266341068501 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2012834183813297e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972646978764078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23685.36051618523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.53535057138822, dt = 0.007972646978764078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972612044456472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24113.541950749397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.543323218366984, dt = 0.007972612044456472 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972558695274188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23666.810166866188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.551295830411441, dt = 0.007972558695274188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797248706486904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23721.32283604718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.559268389106715, dt = 0.00797248706486904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 225.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972397332695507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24358.698723059737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.567240876171584, dt = 0.007972397332695507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 240.88 us (88.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972289723557948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.302e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22042.750012828925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.575213273504279, dt = 0.007972289723557948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.1926223897340549e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972164507043281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23346.83669701888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.583185563227837, dt = 0.007972164507043281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972021996840604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22687.85181275336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.59115772773488, dt = 0.007972021996840604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797186254994963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.320e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21738.45272004576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.599129749731721, dt = 0.00797186254994963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971686565779781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23290.925040268878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.60710161228167, dt = 0.007971686565779781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971494485142517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23087.098622972975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.61507329884745, dt = 0.007971494485142517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.2468324983583301e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971286789139338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24014.04166985047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.623044793332592, dt = 0.007971286789139338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971063997948426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23041.749355760287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.631016080121731, dt = 0.007971063997948426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 642.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 234.12 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970826669513058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22978.999901996205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.63898714411968, dt = 0.007970826669513058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 281.18 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.2468324983583301e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970575398135157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.314e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21835.621282916694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.646957970789193, dt = 0.007970575398135157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970310812977667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23504.8378636213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.654928546187327, dt = 0.007970310812977667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970033576479579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23831.256604352446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.662898857000305, dt = 0.007970033576479579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969744382687683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24065.342241347294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.670868890576784, dt = 0.007969744382687683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2468324983583301e-18,0)
sum a = (2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796944395550943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.536e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18682.1291080421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.678838634959472, dt = 0.00796944395550943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 268.33 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969133046891279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22785.86231257372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.686808078914982, dt = 0.007969133046891279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968812434927317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24202.753408097316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.694777211961873, dt = 0.007968812434927317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796848292190291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23752.874968113098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7027460243968005, dt = 0.00796848292190291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2739375526704677e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968145332278482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23191.104761298826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.710714507318704, dt = 0.007968145332278482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2739375526704677e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967800510618498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23381.965967296208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.718682652650982, dt = 0.007967800510618498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (-1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796744931947098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23950.904158436388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.726650453161601, dt = 0.00796744931947098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796709263720295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22996.791789713498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.734617902481072, dt = 0.00796709263720295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 243.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966731355797292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23263.56542441215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.742584995118275, dt = 0.007966731355797292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (-2.710505431213761e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966366378616602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23587.58000703201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.750551726474072, dt = 0.007966366378616602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.308665903507894e-18,0)
sum a = (6.776263578034403e-21,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965998618139751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23831.576336230486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.758518092852689, dt = 0.007965998618139751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.311207002349657e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965628993676808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24104.389691149725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.766484091470828, dt = 0.007965628993676808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3145951341386741e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965258429068117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22976.78175562636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7744497204645056, dt = 0.007965258429068117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3145951341386741e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964887850373298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23019.702942471253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7824149788935735, dt = 0.007964887850373298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 280.91 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.328147661294743e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964518183556006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22867.274997602603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.790379866743947, dt = 0.007964518183556006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.328147661294743e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964150352170222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.548e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18522.709658181662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7983443849275025, dt = 0.007964150352170222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3552527156068805e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796378527505383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23516.38486848875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.806308535279673, dt = 0.00796378527505383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.328147661294743e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963423864035302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23427.893521571008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.814272320554727, dt = 0.007963423864035302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963067021659132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24067.003622037064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.822235744418762, dt = 0.007963067021659132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962715638935637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22709.44537761053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.830198811440422, dt = 0.007962715638935637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962370593120868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23845.066829401796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.838161527079357, dt = 0.007962370593120868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962032745531854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22633.266535411687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.846123897672478, dt = 0.007962032745531854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3010426069826053e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961702939402808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24168.711030917082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.85408593041801, dt = 0.007961702939402808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3010426069826053e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796138199778742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21782.382798706614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.862047633357412, dt = 0.00796138199778742 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961070721512415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23473.688980137078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.870009015355199, dt = 0.007961070721512415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960769887187467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23055.259374950478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8779700860767115, dt = 0.007960769887187467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 229.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.3552527156068805e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960480245276215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23875.067557736555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.885930855963899, dt = 0.007960480245276215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960202518233152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22732.55628498253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.893891336209175, dt = 0.007960202518233152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3010426069826053e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795993739871095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23709.30780580253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.901851538727408, dt = 0.00795993739871095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959685547842483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23209.840799909463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.909811476126119, dt = 0.007959685547842483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959447593601817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22859.813747888267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9177711616739614, dt = 0.007959447593601817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959224129248058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22364.001680356258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.925730609267563, dt = 0.007959224129248058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 286.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959015711855857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22340.148875003513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.933689833396811, dt = 0.007959015711855857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 471.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.2%)
LB compute : 236.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958822860936117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23555.63055662246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.941648849108667, dt = 0.007958822860936117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958646057150168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24044.217070570696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.949607671969603, dt = 0.007958646057150168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.981555974335137e-19,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958485741120614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22787.25793425964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.957566318026753, dt = 0.007958485741120614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795834231234156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23389.157653809714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.965524803767874, dt = 0.00795834231234156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.981555974335137e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958216128190962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23815.09228809963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.973483146080215, dt = 0.007958216128190962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.846030702774449e-19,-1.5178830414797062e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958107503047382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23185.648205402347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.981441362208407, dt = 0.007958107503047382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.846030702774449e-19,-1.5178830414797062e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958016707513301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23582.663913195698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.989399469711454, dt = 0.007958016707513301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.846030702774449e-19,-1.4094628242311558e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957943967746801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22916.026536493027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.997357486418967, dt = 0.007957943967746801 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.846030702774449e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795788946490326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22813.607516586253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.005315430386714, dt = 0.00795788946490326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.896852679609707e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957853334688368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23361.411053826985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.013273319851617, dt = 0.007957853334688368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.913793338554793e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957835667023485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22816.618193928367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.021231173186305, dt = 0.007957835667023485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.846030702774449e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957836505824205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23651.498270636745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.029189008853328, dt = 0.007957836505824205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957855848892581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23123.965447464267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.037146845359151, dt = 0.007957855848892581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957893647923328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23302.861060261068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.045104701208045, dt = 0.007957893647923328 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.5178830414797062e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957949808623938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22227.39072676642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.053062594855968, dt = 0.007957949808623938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958024190948364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23383.936470207245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.061020544664592, dt = 0.007958024190948364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.981555974335137e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958116609443861 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23898.548669774384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.06897856885554, dt = 0.007958116609443861 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958226833709977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23662.687092291042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.076936685464984, dt = 0.007958226833709977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958354588968744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23800.28477762919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.084894912298694, dt = 0.007958354588968744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958499556744528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23640.90064600753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.092853266887662, dt = 0.007958499556744528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958661375652105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23327.57286297051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.100811766444407, dt = 0.007958661375652105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.5178830414797062e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958839642290895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24022.09854133398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.108770427820058, dt = 0.007958839642290895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959033912243351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23089.55009448563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.116729267462349, dt = 0.007959033912243351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 227.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,-1.4094628242311558e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959243701174958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23803.291696394816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.124688301374592, dt = 0.007959243701174958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795946848603338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23708.609687752243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.132647545075766, dt = 0.00795946848603338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.51 us (8.6%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.34 us (89.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795970770634364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22862.30917858236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.1406070135618, dt = 0.00795970770634364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795996076559647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23549.12143071516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.148566721268143, dt = 0.00795996076559647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960227032726253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23760.190337961925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.15652668203374, dt = 0.007960227032726253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960505843675187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23861.671300043057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.164486909066465, dt = 0.007960505843675187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960796503039687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23718.649471322475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.17244741491014, dt = 0.007960796503039687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.4094628242311558e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961098285795257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23245.180985357936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.18040821141318, dt = 0.007961098285795257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 247.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.463672932855431e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796141043909543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23327.763606890672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.188369309698976, dt = 0.00796141043909543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.39 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961732184140657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.454e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19710.703404090364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.196330720138072, dt = 0.007961732184140657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962062718112306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23047.70072724568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.204292452322212, dt = 0.007962062718112306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962401216167309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22976.657179871694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.212254515040325, dt = 0.007962401216167309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (1.0842021724855044e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962746833488491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23937.292432917806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.220216916256492, dt = 0.007962746833488491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,-1.3552527156068805e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963098707385508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22845.787229197205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.22817966308998, dt = 0.007963098707385508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 235.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3552527156068805e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796345595944134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23646.77870092957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.236142761797366, dt = 0.00796345595944134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3417001884508117e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963817697699032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23530.198966148833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.244106217756807, dt = 0.007963817697699032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3484764520288461e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964183018883268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23504.606445350695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.252070035454505, dt = 0.007964183018883268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.348052935555219e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964551010651329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23982.363006107676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.260034218473388, dt = 0.007964551010651329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3417001884508117e-18,0)
sum a = (-5.421010862427522e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964920753867915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24138.213363683706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.26799876948404, dt = 0.007964920753867915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.3417001884508117e-18,0)
sum a = (-5.421010862427522e-20,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079652913248981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23166.110854849216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.275963690237907, dt = 0.0079652913248981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 247.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.328147661294743e-18,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965661797912778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23106.218942339838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.283928981562806, dt = 0.007965661797912778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.328147661294743e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966031247200904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23568.305730077627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.291894643360719, dt = 0.007966031247200904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966398749482684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23945.005999189456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.299860674607919, dt = 0.007966398749482684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.328147661294743e-18,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966763386217978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22963.344288106513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.307827073357402, dt = 0.007966763386217978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.328147661294743e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967124245904159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23637.539212359214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.31579383674362, dt = 0.007967124245904159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.328147661294743e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967480426357585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22809.718612993453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.323760960989524, dt = 0.007967480426357585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 274.85 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.3552527156068805e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967831036973018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22407.085739664777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.331728441415882, dt = 0.007967831036973018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3552527156068805e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796817520095525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24222.114846630775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.339696272452855, dt = 0.00796817520095525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968512057517318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23169.754755191734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.34766444765381, dt = 0.007968512057517318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.2468324983583301e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968840764039711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23653.859111604477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.355632959711329, dt = 0.007968840764039711 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 278.33 us (97.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.2468324983583301e-18,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969160498185164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23200.98047584858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.363601800475369, dt = 0.007969160498185164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1926223897340549e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969470459963561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23992.334383826288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.371570960973553, dt = 0.007969470459963561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.2468324983583301e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796976987374171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22732.749358880574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.379540431433517, dt = 0.00796976987374171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.2468324983583301e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970057990193014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23048.505559829402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.387510201307258, dt = 0.007970057990193014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.2468324983583301e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970334088181728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23884.1800213225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.39548025929745, dt = 0.007970334088181728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.047314121155779e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970597476577348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23403.115649752795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.403450593385632, dt = 0.007970597476577348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797084749599418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22921.37875488253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.411421190862209, dt = 0.00797084749599418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971083520451743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23277.172662515295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.419392038358202, dt = 0.007971083520451743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971304958951762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23713.209875050947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.427363121878654, dt = 0.007971304958951762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3010426069826053e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971511256967581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.2550142363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.435334426837606, dt = 0.007971511256967581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971701897842215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23915.849142605584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.443305938094573, dt = 0.007971701897842215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.692061405548898e-19,-1.3010426069826053e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797187640409139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23248.117210750217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.451277639992416, dt = 0.00797187640409139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.692061405548898e-19,-1.3010426069826053e-18,0)
sum a = (-8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972034338608259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23575.242009723774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.459249516396508, dt = 0.007972034338608259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 265.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972175305766537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.396e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20560.346123308915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.467221550735117, dt = 0.007972175305766537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.692061405548898e-19,-1.3010426069826053e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972298952419351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23768.01543419495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.475193726040883, dt = 0.007972298952419351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.55653613398821e-19,-1.1926223897340549e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972404968791045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22881.234959886202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.483166024993302, dt = 0.007972404968791045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.692061405548898e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797249308925975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24096.978364975854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.491138429962094, dt = 0.00797249308925975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972563093028604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23627.432840139172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.499110923051354, dt = 0.007972563093028604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.38712954453735e-19,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797261480468387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23091.699198746643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.507083486144383, dt = 0.00797261480468387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (76.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.454892180317694e-19,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972648094638513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23030.40609903544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.515056100949067, dt = 0.007972648094638513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1926223897340549e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972662879460116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23353.79445584387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.523028749043705, dt = 0.007972662879460116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (1.4%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972659122082136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23559.530383593967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.531001411923166, dt = 0.007972659122082136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0842021724855044e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797263683189813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22797.408735532532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.538974071045248, dt = 0.00797263683189813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.149960319306146e-19,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972596064738524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23740.43099034904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.546946707877145, dt = 0.007972596064738524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-1.0842021724855044e-18,0)
sum a = (-8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972536922730119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24072.877708854863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.554919303941883, dt = 0.007972536922730119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.0842021724855044e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972459554038589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22912.661437539857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.562891840864614, dt = 0.007972459554038589 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972364152494726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23072.798859850922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.570864300418652, dt = 0.007972364152494726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.3%)
patch tree reduce : 621.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972250957105294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22716.84780377189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.578836664571147, dt = 0.007972250957105294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 570.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972120251449891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22221.717311026314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.586808915528252, dt = 0.007972120251449891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.0842021724855044e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797197236296528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23040.458523207824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.594781035779702, dt = 0.00797197236296528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 262.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971807662119083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22813.239173447266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.602753008142667, dt = 0.007971807662119083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971626561475004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23310.287912157633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.610724815804787, dt = 0.007971626561475004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971429514651976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23311.841205507215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.61869644236626, dt = 0.007971429514651976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,-1.1926223897340549e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971217015179943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23002.562798629897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.626667871880914, dt = 0.007971217015179943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970989595255258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23492.470208812825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.634639088896094, dt = 0.007970989595255258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1384122811097797e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970747824398893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24210.005376733818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.64261007849135, dt = 0.007970747824398893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-1.1926223897340549e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970492308020948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23468.954046187602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.650580826315748, dt = 0.007970492308020948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.1384122811097797e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970223685895188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23696.157836521652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.658551318623768, dt = 0.007970223685895188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1384122811097797e-18,0)
sum a = (-4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969942630547488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24069.55014661166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.666521542309663, dt = 0.007969942630547488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969649845562433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23202.687324289207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.67449148494021, dt = 0.007969649845562433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1384122811097797e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969346063812327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24248.57098041043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.682461134785774, dt = 0.007969346063812327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1384122811097797e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969032045613281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23056.003579168795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.690430480849585, dt = 0.007969032045613281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968708576812977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23259.022246965236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.698399512895199, dt = 0.007968708576812977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.0842021724855044e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968376466815155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24094.54507290908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.706368221472012, dt = 0.007968376466815155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.111307226797642e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968036546545779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23242.015334603126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.714336597938827, dt = 0.007968036546545779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.111307226797642e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967689666366084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23044.973811788997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.722304634485372, dt = 0.007967689666366084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 272.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.111307226797642e-18,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079673366939379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22959.693460943836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.730272324151738, dt = 0.0079673366939379 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 281.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0977546996415732e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966978512046596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22666.40754074864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.738239660845675, dt = 0.007966978512046596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1045309632196076e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966616016387196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23622.38820851439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.746206639357721, dt = 0.007966616016387196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1079190950086248e-18,0)
sum a = (-1.3552527156068805e-20,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966250113319357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22507.178846094732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.75417325537411, dt = 0.007966250113319357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1146953585866592e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965881717596756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24090.95601738343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.76213950548743, dt = 0.007965881717596756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.1180834903756764e-18,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965511750076738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23159.13881455868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.770105387205026, dt = 0.007965511750076738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,-1.111307226797642e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965141135415892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23010.62614369785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.778070898955104, dt = 0.007965141135415892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0977546996415732e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964770799757461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23371.62630797543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.78603604009052, dt = 0.007964770799757461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.111307226797642e-18,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964401668416271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23629.095493273304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.794000810890278, dt = 0.007964401668416271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.111307226797642e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796403466356705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23660.62109983741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.801965212558695, dt = 0.00796403466356705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.111307226797642e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963670701941877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23789.72885751763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.809929247222263, dt = 0.007963670701941877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.111307226797642e-18,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796331069254252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23039.565753757397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.817892917924205, dt = 0.00796331069254252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.0842021724855044e-18,0)
sum a = (2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962955534373298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.46831713741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.825856228616747, dt = 0.007962955534373298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.0299920638612292e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962606114200167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22962.07883135502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.83381918415112, dt = 0.007962606114200167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0299920638612292e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796226330434151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23409.675716099176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.841781790265319, dt = 0.00796226330434151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.0299920638612292e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961927960496112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23789.80680063394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.84974405356966, dt = 0.007961927960496112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.75781955236954e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961600919613681 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23725.851868352413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.857705981530156, dt = 0.007961600919613681 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.75781955236954e-19,0)
sum a = (4.336808689942018e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961282997813127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22921.397327981536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.86566758244977, dt = 0.007961282997813127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.38 us (94.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.75781955236954e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796097498835372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22210.95674934032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.873628865447584, dt = 0.00796097498835372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.75781955236954e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960677659664085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23606.92071701143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.881589840435938, dt = 0.007960677659664085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 268.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-9.215718466126788e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796039175343387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22834.93694536265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.889550518095602, dt = 0.00796039175343387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.7%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 382.34 us (97.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796011798277268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.376e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20823.398075559526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.897510909849036, dt = 0.00796011798277268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959857030440876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23489.989473254995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.905471027831808, dt = 0.007959857030440876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959609547156354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23959.716342488253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.91343088486225, dt = 0.007959609547156354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959376149981573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23059.02273565953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.921390494409405, dt = 0.007959376149981573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-8.673617379884035e-19,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959157420794684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23447.38053012259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.929349870559387, dt = 0.007959157420794684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.963111948670274e-19,-8.673617379884035e-19,0)
sum a = (8.673617379884035e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958953904848383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23840.578966433495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.93730902798018, dt = 0.007958953904848383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958766109420054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23653.61104892835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.94526798188503, dt = 0.007958766109420054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.776263578034403e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079585945025564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24068.121254659796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.95322674799445, dt = 0.0079585945025564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.047314121155779e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958439511915584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23762.04253075532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.961185342497005, dt = 0.007958439511915584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.318364664277155e-19,-8.673617379884035e-19,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958301523709702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23380.032040332346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.96914378200892, dt = 0.007958301523709702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.318364664277155e-19,-7.589415207398531e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958180881750014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22842.335815853297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.97710208353263, dt = 0.007958180881750014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.318364664277155e-19,-7.589415207398531e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958077886597368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23995.660742849574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.98506026441438, dt = 0.007958077886597368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.37 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.182839392716467e-19,-7.589415207398531e-19,0)
sum a = (8.673617379884035e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957992794819681 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22336.757418731762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.993018342300978, dt = 0.007957992794819681 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.318364664277155e-19,-6.505213034913027e-19,0)
sum a = (8.673617379884035e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957925818358419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23968.35377745778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.000976335095798, dt = 0.007957925818358419 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.335305323222241e-19,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957877124005414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22836.6873597766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.008934260914156, dt = 0.007957877124005414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 432.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 283.07 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.386127300057499e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957846832991413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22202.48716709433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.01689213803816, dt = 0.007957846832991413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 247.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.386127300057499e-19,-6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957835020687221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23145.349236414575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.024849984871151, dt = 0.007957835020687221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.453889935837843e-19,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957841716418232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24119.503902278317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.032807819891838, dt = 0.007957841716418232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957866903392685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23551.942994286866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.040765661608257, dt = 0.007957866903392685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957910518743958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23484.71342643088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.04872352851165, dt = 0.007957910518743958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.860465750519907e-19,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957972453686603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23400.285284218917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.056681439030394, dt = 0.007957972453686603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-4.336808689942018e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958052553785917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23144.03174654623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.06463941148408, dt = 0.007958052553785917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795815061934028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23818.402750253197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.072597464037866, dt = 0.00795815061934028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 263.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958266405875426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23077.285492814062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.080555614657206, dt = 0.007958266405875426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958399624749375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23572.61789999657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.088513881063081, dt = 0.007958399624749375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958549943866642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23766.96017644456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.09647228068783, dt = 0.007958549943866642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-3.2526065174565133e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958716988499984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23640.895736932183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.104430830631697, dt = 0.007958716988499984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 288.89 us (97.0%)
LB move op cnt : 0
LB apply : 1.79 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958900342217731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.301e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22018.64013485666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.112389547620197, dt = 0.007958900342217731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959099547914402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23639.96646250327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.120348447962414, dt = 0.007959099547914402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.74 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-3.2526065174565133e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959314108942258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22867.270367662204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.128307547510328, dt = 0.007959314108942258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795954349034095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23753.907340662947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.136266861619271, dt = 0.00795954349034095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959787120162364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22756.290236555913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.144226405109611, dt = 0.007959787120162364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.4%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.047314121155779e-19,-1.6263032587282567e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796004439088746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23180.245166272314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.152186192229774, dt = 0.00796004439088746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.6263032587282567e-19,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960314660931707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23821.987671088533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.160146236620662, dt = 0.007960314660931707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 223.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960597256235418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24126.389788240824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.168106551281593, dt = 0.007960597256235418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.6263032587282567e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960891471935209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23217.425148093556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.176067148537829, dt = 0.007960891471935209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961196574112513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23103.340966648164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.184028040009764, dt = 0.007961196574112513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-5.421010862427522e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961511801614864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24091.07409800662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.191989236583877, dt = 0.007961511801614864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 232.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0079618363679456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22724.30798673518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.199950748385492, dt = 0.0079618363679456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.3%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962169463217312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24267.95180092623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.207912584753437, dt = 0.007962169463217312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.3552527156068805e-19,0)
sum a = (2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962510256164337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23277.17026503888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.215874754216655, dt = 0.007962510256164337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (1.0842021724855044e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962857896209334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24523.80077972292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.223837264472818, dt = 0.007962857896209334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963211515578932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23419.634539694845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.231800122369028, dt = 0.007963211515578932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963570231463166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23715.111091694496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.239763333884607, dt = 0.007963570231463166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.1519648082658485e-19,0)
sum a = (5.421010862427522e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963933148213538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23716.39518974487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.247726904116071, dt = 0.007963933148213538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-1.0842021724855044e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964299359574163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23890.50537559943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.255690837264284, dt = 0.007964299359574163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-9.825582188149884e-20,0)
sum a = (-2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964667950940536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22799.273907561528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.263655136623859, dt = 0.007964667950940536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-8.809142651444724e-20,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965038001640367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23684.123049068443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.271619804574799, dt = 0.007965038001640367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-9.486769009248164e-20,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965408587230775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23107.159853903006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.279584842576439, dt = 0.007965408587230775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-8.131516293641283e-20,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965778781806184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23816.4011239253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.287550251163669, dt = 0.007965778781806184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 272.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-8.131516293641283e-20,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966147660311118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.302e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22026.98807621992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.295516029945475, dt = 0.007966147660311118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-8.131516293641283e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966514300852172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23047.47267122987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.303482177605785, dt = 0.007966514300852172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-5.421010862427522e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966877787003385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23470.521331386542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.311448691906637, dt = 0.007966877787003385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-2.710505431213761e-20,0)
sum a = (-2.168404344971009e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796723721009916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23959.754054138743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.319415569693641, dt = 0.00796723721009916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.69 us (9.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 239.08 us (88.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-5.421010862427522e-20,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967591671509077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22710.34581417409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.32738280690374, dt = 0.007967591671509077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-5.421010862427522e-20,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967940284888762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22824.14400890633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.33535039857525, dt = 0.007967940284888762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-1.0842021724855044e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968282178401261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23812.104565249134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.343318338860138, dt = 0.007968282178401261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968616496903141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23687.220199619773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.35128662103854, dt = 0.007968616496903141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796894240408995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23362.933846343476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.359255237535443, dt = 0.00796894240408995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796925908459547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23140.136635203955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.367224179939534, dt = 0.00796925908459547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 235.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,0,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969565746039433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23899.711101289722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.375193439024128, dt = 0.007969565746039433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,-5.421010862427522e-20,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969861621018544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22927.972328413995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.383163004770168, dt = 0.007969861621018544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797014596903567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23594.713412564954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.391132866391187, dt = 0.00797014596903567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 286.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-5.421010862427522e-20,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970418078362284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22492.73929339381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.399103012360223, dt = 0.007970418078362284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970677267829322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23388.25389751525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.407073430438585, dt = 0.007970677267829322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797092288854199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23322.91442097613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.415044107706414, dt = 0.00797092288854199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.2%)
LB compute : 249.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971154325513959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22834.24995464328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.423015030594957, dt = 0.007971154325513959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971370999216836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22624.41791230661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.43098618492047, dt = 0.007971370999216836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (78.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,0,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971572367040861 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23340.728550207532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.438957555919687, dt = 0.007971572367040861 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971757924663068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23432.993340524743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.446929128286728, dt = 0.007971757924663068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,0,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971927207319396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24177.60074204034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.45490088621139, dt = 0.007971927207319396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,0,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972079790977355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23900.545024505063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.462872813418711, dt = 0.007972079790977355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,0,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972215293406379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23089.37053190049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.470844893209689, dt = 0.007972215293406379 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797233337514285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22966.098213574463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.478817108503096, dt = 0.00797233337514285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.538092108323347e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972433740347496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23180.34798347051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.486789441878239, dt = 0.007972433740347496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972516137552812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23143.740965714293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.494761875618586, dt = 0.007972516137552812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.334804200982315e-19,-1.0842021724855044e-19,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797258036029855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23716.099907361986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.502734391756139, dt = 0.00797258036029855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.317863542037229e-19,-1.0842021724855044e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972626247653674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23266.153075553866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.510706972116438, dt = 0.007972626247653674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 261.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.233160247311799e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972653684623389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23295.42498730035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.518679598364091, dt = 0.007972653684623389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.334804200982315e-19,-1.0842021724855044e-19,0)
sum a = (-8.673617379884035e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972662602440181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23759.38694549809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.526652252048715, dt = 0.007972662602440181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.267041565201971e-19,-1.0842021724855044e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972652978738035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22842.323746813312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.534624914651156, dt = 0.007972652978738035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972624837609516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23381.261561455525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.542597567629894, dt = 0.007972624837609516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972578249545436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23143.362597371994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.550570192467504, dt = 0.007972578249545436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,-1.0842021724855044e-19,0)
sum a = (-1.3010426069826053e-18,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797251333125726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23345.02297256193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.558542770717048, dt = 0.00797251333125726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.402566836762659e-19,-2.168404344971009e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972430245382824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23537.024760149365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.566515284048306, dt = 0.007972430245382824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972329200075972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24195.967795230034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.574487714293689, dt = 0.007972329200075972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 280.93 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972210448481282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22876.926275330472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.582460043493764, dt = 0.007972210448481282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-2.168404344971009e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007972074288095243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24002.520364146883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.590432253942245, dt = 0.007972074288095243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971921060015432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23135.608165121073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59840432823034, dt = 0.007971921060015432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971751148079813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22785.326184707497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.606376249290355, dt = 0.007971751148079813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797156497789824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23741.740887916912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.614348000438435, dt = 0.00797156497789824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-1.6263032587282567e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971363015778733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23532.488106039134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.622319565416333, dt = 0.007971363015778733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131516293641283e-19,-1.0842021724855044e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007971145767551393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23973.042754977814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.630290928432112, dt = 0.007971145767551393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.6263032587282567e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970913777292804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24074.758245195528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.638262074199664, dt = 0.007970913777292804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 229.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.6263032587282567e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00797066762595446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23710.157792010505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.646232987976957, dt = 0.00797066762595446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.6263032587282567e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970407929898601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24098.829050074077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.654203655602911, dt = 0.007970407929898601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007970135339345265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23173.626567410593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.66217406353281, dt = 0.007970135339345265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796985053673468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23841.04843463138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.670144198872155, dt = 0.00796985053673468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969554235009044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23322.2014030364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.67811404940889, dt = 0.007969554235009044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-1.6263032587282567e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007969247175818225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23539.311294720224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.6860836036439, dt = 0.007969247175818225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.168404344971009e-19,0)
sum a = (-2.168404344971009e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968930127654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23501.498540598317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.694052850819718, dt = 0.007968930127654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-1.8973538018496328e-19,0)
sum a = (-2.168404344971009e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007968603883917536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22695.00927521939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.702021780947373, dt = 0.007968603883917536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,-2.168404344971009e-19,0)
sum a = (-2.168404344971009e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796826926092518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23534.959527005813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.70999038483129, dt = 0.00796826926092518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967927095857525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23191.982862833956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.717958654092214, dt = 0.007967927095857525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.439454888092385e-19,0)
sum a = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967578244657105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23743.925310420167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.725926581188071, dt = 0.007967578244657105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.439454888092385e-19,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007967223579880047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23154.72145729345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.733894159432728, dt = 0.007967223579880047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966863988507036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23658.247092266625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.741861383012608, dt = 0.007966863988507036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.371692252312041e-19,0)
sum a = (-2.710505431213761e-20,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966500369719362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23499.09042306764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.749828247001115, dt = 0.007966500369719362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.5%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 499.34 us (98.3%)
LB move op cnt : 0
LB apply : 1.70 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.371692252312041e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966133632645452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.618e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17725.19522904774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.757794747370834, dt = 0.007966133632645452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 240.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.371692252312041e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965764694083765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23415.629163654703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.76576088100348, dt = 0.007965764694083765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 290.80 us (97.1%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.507217523872729e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965394476207697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22459.915631616892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.773726645697565, dt = 0.007965394476207697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.439454888092385e-19,0)
sum a = (1.0842021724855044e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007965023904258269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23542.70926789011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.781692040173771, dt = 0.007965023904258269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.439454888092385e-19,0)
sum a = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964653904230495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22722.76632670299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.78965706407803, dt = 0.007964653904230495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.710505431213761e-19,0)
sum a = (1.0842021724855044e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007964285400559054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23415.313675638638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.79762171798226, dt = 0.007964285400559054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963919313809258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22587.07837807531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.80558600338282, dt = 0.007963919313809258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,-2.439454888092385e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796355655837892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24074.78650583841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.813549922696629, dt = 0.00796355655837892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.710505431213761e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007963198040216892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23075.099512130113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.821513479255007, dt = 0.007963198040216892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.710505431213761e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962844654563983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23381.761740449558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.829476677295224, dt = 0.007962844654563983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,-2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962497283721769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23828.961559792464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.837439521949788, dt = 0.007962497283721769 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,-2.710505431213761e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007962156794854932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23163.17923644177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.845402019233509, dt = 0.007962156794854932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-2.168404344971009e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961824037832422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23729.676546781928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.853364176028364, dt = 0.007961824037832422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-1.6263032587282567e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007961499843112823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23478.857434166555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.861326000066196, dt = 0.007961499843112823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,-2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00796118501967913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23132.556503075575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.869287499909309, dt = 0.00796118501967913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 223.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,-1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960880353028015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23262.372180575425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.877248684928988, dt = 0.007960880353028015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-5.421010862427522e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960586603218354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23399.63362174192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.885209565282016, dt = 0.007960586603218354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,-5.421010862427522e-20,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960304502984012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22916.07635217443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.893170151885235, dt = 0.007960304502984012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-5.421010862427522e-20,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007960034755915309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23094.91651682928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.901130456388218, dt = 0.007960034755915309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.86 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,0,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959778034713604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22383.348412211675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.909090491144134, dt = 0.007959778034713604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959534979523364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23236.1761128181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.917050269178848, dt = 0.007959534979523364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959306196345559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23725.987523823096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.925009804158371, dt = 0.007959306196345559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007959092255536393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23468.337430038922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.932969110354717, dt = 0.007959092255536393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958893690394903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23306.29203369371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.940928202610253, dt = 0.007958893690394903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 223.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958710995842838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23428.09168563403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.948887096300648, dt = 0.007958710995842838 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,-1.0842021724855044e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958544627200016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23887.021488156865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.95684580729649, dt = 0.007958544627200016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,-1.0842021724855044e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958394999058082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23363.905931926034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.964804351923691, dt = 0.007958394999058082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958262484255392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23571.83512234559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.972762746922749, dt = 0.007958262484255392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 432.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958147412955429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23126.155263301014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.980721009407004, dt = 0.007958147412955429 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (1.734723475976807e-18,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007958050071831002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23900.89255996598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.988679156819959, dt = 0.007958050071831002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,0,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.007957970703356158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.01015813524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.99663720689179, dt = 0.007957970703356158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3586408473958977e-18,1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00795790950520752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24071.984421886562 (tsim/hr) [sph::Model][rank=0]
(1260, 2, 3)
Elliptical orbit
216 m1 = 1.0
217 m2 = 1e-4
218 a = 1.0
219 _x1, _x2, _v1, _v2 = shamrock.phys.get_binary_rotated(
220 m1=1.0, m2=m2, a=a, e=0.9, nu=0.0, G=G, roll=0.0, pitch=0.0, yaw=np.pi
221 )
222 ctx, model = build_sink_sph_model(
223 positions=[_x1, _x2],
224 velocities=[_v1, _v2],
225 masses=[m1, m2],
226 accretion_radii=[1, 1],
227 box_extent=3,
228 eta_sink=0.5,
229 )
230 snapshots = run_sim(model, 10, use_dt=None)
231 plot_orbit_trajectory(snapshots, "Elliptical orbit")

=== INITIAL CONDITIONS ===
Sink 1: pos=(9.999000099989998e-06, -1.2245243467126816e-21, 0.0), vel=(3.353854516075306e-19, 0.0027386300428910524, 0.0), mass=1.0
Sink 2: pos=(-0.09999000099989999, 1.2245243467126818e-17, 0.0), vel=(-3.3538545160753056e-15, -27.38630042891052, 0.0), mass=0.0001
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.36 us (3.5%)
patch tree reduce : 852.00 ns (0.1%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 600.02 us (93.4%)
LB move op cnt : 0
LB apply : 12.68 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-06 |
+-----------+-----------+
Info: cfl dt = 2.516472318062279e-06 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.476e-03 | 1.6% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0, dt = 2.516472318062279e-06 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.6%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 301.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 423.23 us (97.9%)
LB move op cnt : 0
LB apply : 1.95 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.56e-05 |
+-----------+-----------+
Info: cfl dt = 8.55600732538379e-05 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.768e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.123540212730551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.516472318062279e-06, dt = 8.55600732538379e-05 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (0.9%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 327.06 us (97.2%)
LB move op cnt : 0
LB apply : 1.80 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.776263578034403e-21,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.000140951585045706 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.436e-03 | 0.4% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 214.48047196708347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.807654557190019e-05, dt = 0.000140951585045706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.8%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.1%)
LB compute : 320.72 us (97.4%)
LB move op cnt : 0
LB apply : 1.78 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (71.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3552527156068805e-20,8.673617379884035e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00017807922436272926 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.490e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.44791804204834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00022902813061760618, dt = 0.00017807922436272926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (0.9%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 353.84 us (97.4%)
LB move op cnt : 0
LB apply : 1.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002033293225450427 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.567e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 409.1196721516038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00040710735498033547, dt = 0.0002033293225450427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (0.8%)
patch tree reduce : 511.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 378.45 us (97.5%)
LB move op cnt : 0
LB apply : 1.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.131516293641283e-20,4.336808689942018e-19,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-04 |
+-----------+-----------+
Info: cfl dt = 0.00022100723801777683 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.636e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.29106216744515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0006104366775253781, dt = 0.00022100723801777683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (0.9%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 336.63 us (97.2%)
LB move op cnt : 0
LB apply : 1.78 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002339873238490797 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.550e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 513.408158937079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.000831443915543155, dt = 0.0002339873238490797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 291.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.1%)
LB compute : 308.17 us (97.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (72.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum a = (-1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.00024417775861479543 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.469e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.4659369443904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0010654312393922347, dt = 0.00024417775861479543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 305.49 us (97.1%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002528447682191458 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.410e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623.2137873677422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0013096089980070302, dt = 0.0002528447682191458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 296.69 us (97.1%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026083306823233236 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.368e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.5385965600952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.001562453766226176, dt = 0.00026083306823233236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 303.44 us (97.1%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,4.336808689942018e-19,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002687130325382846 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.347e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.3177712516135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0018232868344585083, dt = 0.0002687130325382846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 275.01 us (97.0%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002768778604506138 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.3674465875712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0020919998669967927, dt = 0.0002768778604506138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028560738051043924 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3080706189686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0023688777274474063, dt = 0.00028560738051043924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.05 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.3010426069826053e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029510989555929176 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.1718085697325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0026544851079578456, dt = 0.00029510989555929176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.3010426069826053e-18,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030554968760380886 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 874.0522278085751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0029495950035171373, dt = 0.00030554968760380886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 245.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031706519616142136 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 897.1422008900735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0032551446911209462, dt = 0.00031706519616142136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.34 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032978114313854493 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 928.3285358255413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0035722098872823676, dt = 0.00032978114313854493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.168404344971009e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034381673326849593 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1008.9927218463237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0039019910304209124, dt = 0.00034381673326849593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 270.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035929131388262733 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.5787507928576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0042458077636894085, dt = 0.00035929131388262733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003763283942865665 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.4469624452809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004605099077572036, dt = 0.0003763283942865665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003950586116611517 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1088.6183087879194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004981427471858603, dt = 0.0003950586116611517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041562202714001375 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1142.2298946607036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005376486083519754, dt = 0.00041562202714001375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 291.02 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043817000354985116 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.927282860878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005792108110659768, dt = 0.00043817000354985116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (60.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046286683005567647 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1321.9891643468457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006230278114209619, dt = 0.00046286683005567647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004898912023906158 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1324.3980856356961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006693144944265295, dt = 0.0004898912023906158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005194376299845824 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1469.3503500948264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007183036146655911, dt = 0.0005194376299845824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005517178163558667 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1559.648989254542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007702473776640493, dt = 0.0005517178163558667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.5178830414797062e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005869620421913264 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1634.9455224106048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00825419159299636, dt = 0.0005869620421913264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.3010426069826053e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006254205687428878 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1656.9615012176105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008841153635187686, dt = 0.0006254205687428878 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.5178830414797062e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006673650706264058 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1828.3839488741037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.009466574203930574, dt = 0.0006673650706264058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.5178830414797062e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007130901005777413 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1965.365800674283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01013393927455698, dt = 0.0007130901005777413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007629145833675648 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2158.4372242848735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010847029375134721, dt = 0.0007629145833675648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008171833313367889 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.306e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2102.640767933537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.011609943958502286, dt = 0.0008171833313367889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 281.98 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008762685694995539 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2316.3267017090925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012427127289839074, dt = 0.0008762685694995539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.000940571453596111 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2573.2408608435144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013303395859338629, dt = 0.000940571453596111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 269.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.001010523559665959 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2710.0902598041016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01424396731293474, dt = 0.001010523559665959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.734723475976807e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.001086588318506571 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2910.8993465851877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015254490872600699, dt = 0.001086588318506571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.8431436932253575e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011692623626768433 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3153.774479693416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01634107919110727, dt = 0.0011692623626768433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 290.64 us (97.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.8431436932253575e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012590767474181274 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.320e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3189.6053484876843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.017510341553784114, dt = 0.0012590767474181274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.8431436932253575e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013565979999460372 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3731.5775011754185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018769418301202243, dt = 0.0013565979999460372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 315.16 us (97.2%)
LB move op cnt : 0
LB apply : 1.66 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014624289439852415 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.323e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3690.2125831781063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02012601630114828, dt = 0.0014624289439852415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 272.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.734723475976807e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015772092381768905 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.314e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4006.849799645393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021588445245133522, dt = 0.0015772092381768905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001701615558116047 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4637.604154959006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023165654483310413, dt = 0.001701615558116047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 288.21 us (97.0%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018363613423451341 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4785.5208329663765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02486727004142646, dt = 0.0018363613423451341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6805133673525319e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001982196012755932 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5414.14252605558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026703631383771593, dt = 0.001982196012755932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.21 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6805133673525319e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002139903569710333 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5830.659941971546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028685827396527523, dt = 0.002139903569710333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6805133673525319e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002310300452018707 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6307.8359814696505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030825730966237856, dt = 0.002310300452018707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 287.15 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024942325420326244 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.351e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6155.899285581737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.033136031418256565, dt = 0.0024942325420326244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.49 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6805133673525319e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002692571186924347 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7416.480813237022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03563026396028919, dt = 0.002692571186924347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6805133673525319e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029062080992498796 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7405.051063881791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03832283514721354, dt = 0.0029062080992498796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031360489937491834 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8576.181076880222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04122904324646342, dt = 0.0031360489937491834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033830058137721375 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9318.487599725524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0443650922402126, dt = 0.0033830058137721375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.6534083130403943e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036479874006043497 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9892.858362126417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.047748098053984736, dt = 0.0036479874006043497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6805133673525319e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.003931888463301489 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10347.824057840839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05139608545458908, dt = 0.003931888463301489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 331.22 us (97.2%)
LB move op cnt : 0
LB apply : 2.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.6805133673525319e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.004235576716541768 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.299e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10895.690439355718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05532797391789057, dt = 0.004235576716541768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.6534083130403943e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.004559878070690757 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12332.819613639122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05956355063443234, dt = 0.004559878070690757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.6534083130403943e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.00490555978302767 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12859.357245635272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0641234287051231, dt = 0.00490555978302767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6805133673525319e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.005273311513217644 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14604.214725517586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06902898848815077, dt = 0.005273311513217644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.666960840196463e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.005663724270897648 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15045.480945865304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07430230000136841, dt = 0.005663724270897648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.666960840196463e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.006077267299814371 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16852.81123247433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07996602427226605, dt = 0.006077267299814371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.666960840196463e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.006514263012213702 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18270.947404256734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08604329157208042, dt = 0.006514263012213702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 262.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.6601845766184287e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.006974860169668444 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.302e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18009.91974255306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09255755458429413, dt = 0.006974860169668444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.6567964448294115e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.007459005602258037 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20667.068831366505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09953241475396257, dt = 0.007459005602258037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 271.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6551023789349029e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.007966414866305184 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20401.30356616753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10699142035622061, dt = 0.007966414866305184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6551023789349029e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.008496542360182432 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23617.58521391856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1149578352225258, dt = 0.008496542360182432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.44 us (94.9%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6567964448294115e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.009048551545431232 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23576.856370582263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12345437758270823, dt = 0.009048551545431232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.6534083130403943e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.009621286052780703 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25960.638044999614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13250292912813946, dt = 0.009621286052780703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.6466320494623599e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010213242584473306 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29073.477934248036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14212421518092017, dt = 0.010213242584473306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.6398557858843255e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.01082254664906389 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30999.372135815604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15233745776539348, dt = 0.01082254664906389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.6398557858843255e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.0114469322746514 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32202.958464412914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16316000441445738, dt = 0.0114469322746514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.01208372693220098 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33338.63738418558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1746069366891088, dt = 0.01208372693220098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6127507315721878e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012729842952152555 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34040.824931723786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18669066362130976, dt = 0.012729842952152555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 283.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,1.6127507315721878e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013381776724349172 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.315e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34853.497316251545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1994205065734623, dt = 0.013381776724349172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,1.6127507315721878e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.014035616923062575 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38847.249336469395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21280228329781148, dt = 0.014035616923062575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6127507315721878e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-02 |
+-----------+-----------+
Info: cfl dt = 0.01468706288611197 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40654.338994158104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22683790022087405, dt = 0.01468706288611197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.599198204416119e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015331454092238534 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.391e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38006.99161844739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.241524963106986, dt = 0.015331454092238534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6127507315721878e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.015963811419440713 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46274.709894157706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25685641719922453, dt = 0.015963811419440713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6127507315721878e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016578890528340686 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46850.799907705485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27282022861866523, dt = 0.016578890528340686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6127507315721878e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.01717124730329136 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50710.266442156084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2893991191470059, dt = 0.01717124730329136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6263032587282567e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017735314810066082 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51141.68614318243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3065703664502972, dt = 0.017735314810066082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 301.31 us (97.1%)
LB move op cnt : 0
LB apply : 1.66 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6534083130403943e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-02 |
+-----------+-----------+
Info: cfl dt = 0.01826549070903143 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50596.47347447985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3243056812603633, dt = 0.01826549070903143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6534083130403943e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-02 |
+-----------+-----------+
Info: cfl dt = 0.018756233519271116 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53862.761162345036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34257117196939474, dt = 0.018756233519271116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,1.6534083130403943e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01920216559033222 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55975.482322911834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3613274054886659, dt = 0.01920216559033222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,1.6534083130403943e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.019598180136484563 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56195.064078231735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3805295710789981, dt = 0.019598180136484563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,1.6805133673525319e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.01993954925834871 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55107.22419330593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40012775121548266, dt = 0.01993954925834871 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 298.30 us (97.1%)
LB move op cnt : 0
LB apply : 1.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,1.6805133673525319e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.02022202955303698 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.338e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53637.34593601493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4200673004738314, dt = 0.02022202955303698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,1.6534083130403943e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020441961728115566 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60809.54851899199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4402893300268684, dt = 0.020441961728115566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1006417091906648e-19,1.6805133673525319e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020596360612205582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62572.69834274109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46073129175498395, dt = 0.020596360612205582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1345230270808369e-19,1.6805133673525319e-18,0)
sum a = (2.168404344971009e-19,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02068299211241024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57046.60722282582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48132765236718955, dt = 0.02068299211241024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1006417091906648e-19,1.6805133673525319e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.0207004340111542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62254.62411221473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5020106444795998, dt = 0.0207004340111542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 265.69 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0667603913004928e-19,1.6534083130403943e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.0206481180147183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59179.60493768889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5227110784907539, dt = 0.0206481180147183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,1.6534083130403943e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020526351141666888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57362.832421046274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5433591965054723, dt = 0.020526351141666888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,1.6534083130403943e-18,0)
sum a = (0,2.0328790734103208e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.020336315337864314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59774.80087298371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5638855476471392, dt = 0.020336315337864314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,1.6534083130403943e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.02008004508176817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58836.12781344251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5842218629850034, dt = 0.02008004508176817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7618285302889447e-19,1.6263032587282567e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.019760383647839767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60349.26683616658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6043019080667716, dt = 0.019760383647839767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,1.6534083130403943e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-02 |
+-----------+-----------+
Info: cfl dt = 0.01938091957272682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58367.265484200434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6240622917146114, dt = 0.01938091957272682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-02 |
+-----------+-----------+
Info: cfl dt = 0.018945905665182634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59109.344270361544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6434432112873382, dt = 0.018945905665182634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.01846016356909993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57483.49617212828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6623891169525208, dt = 0.01846016356909993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 246.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6534083130403943e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017928977391842876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55502.17923527312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6808492805216207, dt = 0.017928977391842876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.017357980222159505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52863.01876506226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6987782579134636, dt = 0.017357980222159505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6534083130403943e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.01675303747253311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52840.9714004996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7161362381356231, dt = 0.01675303747253311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,1.6534083130403943e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-02 |
+-----------+-----------+
Info: cfl dt = 0.016120130893608232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49764.53587192551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7328892756081562, dt = 0.016120130893608232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-02 |
+-----------+-----------+
Info: cfl dt = 0.015465246840466622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48759.980722848435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7490094065017644, dt = 0.015465246840466622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.82 us (97.0%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-02 |
+-----------+-----------+
Info: cfl dt = 0.014794271950344348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43670.209935633735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.764474653342231, dt = 0.014794271950344348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6398557858843255e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-02 |
+-----------+-----------+
Info: cfl dt = 0.014112898855221727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43337.72657468452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7792689252925753, dt = 0.014112898855221727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6263032587282567e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013426543941386686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41191.9804823377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.793381824147797, dt = 0.013426543941386686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,1.6263032587282567e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012740278523224412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40315.14274572859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8068083680891837, dt = 0.012740278523224412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6398557858843255e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012058774159341331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36552.63426296846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8195486466124081, dt = 0.012058774159341331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,1.6534083130403943e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011386262239815962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36622.59937018248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8316074207717494, dt = 0.011386262239815962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,1.6534083130403943e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010726507441049018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33984.164752892604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8429936830115654, dt = 0.010726507441049018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6601845766184287e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.010082794198561255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32489.44454961324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8537201904526144, dt = 0.010082794198561255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6601845766184287e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.009457924999212143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28677.183603690562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8638029846511757, dt = 0.009457924999212143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6601845766184287e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.008854229046106827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28754.67864069686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8732609096503878, dt = 0.008854229046106827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 22.99 us (8.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 241.23 us (88.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6635727084074459e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.008273579698759255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26281.518690859433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8821151386964946, dt = 0.008273579698759255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6627256754601916e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.007717419029516495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25262.281676174498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8903887183952539, dt = 0.007717419029516495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,1.6635727084074459e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.007186787852773179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22953.46098850487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8981061374247704, dt = 0.007186787852773179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,1.6635727084074459e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.006682359661891909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21062.653066361418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9052929252775436, dt = 0.006682359661891909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,1.6737371037744975e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.006204477034955924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19539.983838428765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9119752849394355, dt = 0.006204477034955924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.35 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.6805133673525319e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.005753189229792779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17114.893791700917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9181797619743914, dt = 0.005753189229792779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.666960840196463e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0053282898675775184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17555.286490307568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9239329512041842, dt = 0.0053282898675775184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.6805133673525319e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.004929353790965204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15993.092717905012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9292612410717617, dt = 0.004929353790965204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.6805133673525319e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.004555772367413578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14717.967054797142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9341905948627268, dt = 0.004555772367413578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.6805133673525319e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.004206786683622979 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13674.576023012949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9387463672301404, dt = 0.004206786683622979 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.003881518237447344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12540.643361236012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9429531539137633, dt = 0.003881518237447344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,1.7076184216646695e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.003578996875751431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.521e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9185.38279466817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9468346721512106, dt = 0.003578996875751431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,1.7076184216646695e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.003298185848699791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10360.098863997775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9504136690269621, dt = 0.003298185848699791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 231.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030380039524133297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10008.841838491886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9537118548756619, dt = 0.0030380039524133297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027973448134170262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9210.716707066937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9567498588280753, dt = 0.0027973448134170262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025750934311786675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8102.348474460856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9595472036414923, dt = 0.0025750934311786675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6805133673525319e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023701401411500445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7593.451645100682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9621222970726709, dt = 0.0023701401411500445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 247.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021813921921908625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6908.686769772768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9644924372138209, dt = 0.0021813921921908625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6805133673525319e-18,0)
sum a = (3.469446951953614e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002007783151304974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6563.829776896244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9666738294060118, dt = 0.002007783151304974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 273.47 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.6805133673525319e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001848280357439241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5689.131917532921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9686816125573168, dt = 0.001848280357439241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017018906467509657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5346.976217393092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.970529892914756, dt = 0.0017018906467509657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001567664566115483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5192.485978745879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.972231783561507, dt = 0.001567664566115483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 279.39 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.734723475976807e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014446992813722775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4551.768767333086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9737994481276224, dt = 0.0014446992813722775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.6263032587282567e-18,0)
sum a = (3.469446951953614e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013321403733100518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4401.55162273525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9752441474089947, dt = 0.0013321403733100518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.6263032587282567e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012291826988473286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833.929598712714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9765762877823048, dt = 0.0012291826988473286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011350704782320644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3665.38170070696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9778054704811521, dt = 0.0011350704782320644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.59 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010490967521155602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3236.275173731434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9789405409593841, dt = 0.0010490967521155602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009706023356283176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072.330512395094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9799896377114996, dt = 0.0009706023356283176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.8431436932253575e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008989743805206269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2868.688232181734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9809602400471279, dt = 0.0008989743805206269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.734723475976807e-18,0)
sum a = (1.734723475976807e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008336446413219567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2610.4561329191547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9818592144276486, dt = 0.0008336446413219567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.5178830414797062e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.000774087527509228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2400.51632522132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9826928590689705, dt = 0.000774087527509228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.5178830414797062e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007198180109591923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2237.30466665266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9834669465964797, dt = 0.0007198180109591923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006703894465338141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2153.871914831638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9841867646074389, dt = 0.0006703894465338141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.734723475976807e-18,0)
sum a = (-8.673617379884035e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006253913535001478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1902.245748067119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9848571540539728, dt = 0.0006253913535001478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,1.951563910473908e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005844471965724343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1830.846869137765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9854825454074729, dt = 0.0005844471965724343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005472121976143698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1708.8932756184665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9860669926040454, dt = 0.0005472121976143698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,2.168404344971009e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005133712023683783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1657.7555021759333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9866142048016597, dt = 0.0005133712023683783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048263662089226473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1500.1800639527655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9871275760040281, dt = 0.00048263662089226473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.3852447794681098e-18,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004547464555845376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1393.9511743439198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9876102126249204, dt = 0.0004547464555845376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.3852447794681098e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004294624266712015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1342.7673971011345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.988064959080505, dt = 0.0004294624266712015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.951563910473908e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040656820171563183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1233.1090562056647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9884944215071761, dt = 0.00040656820171563183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.951563910473908e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003858677330112187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.344e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.3769890606272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9889009897088917, dt = 0.0003858677330112187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 292.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.86 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.734723475976807e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003671837045423137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1128.3763704126834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9892868574419029, dt = 0.0003671837045423137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.734723475976807e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003503560884782879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.6988681522234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9896540411464453, dt = 0.0003503560884782879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.734723475976807e-18,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003352408098312671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.6936437026649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9900043972349236, dt = 0.0003352408098312671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,8.673617379884035e-19,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032170851690071833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1000.0247882626746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9903396380447549, dt = 0.00032170851690071833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.000309643454394983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 941.5392089031242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9906613465616556, dt = 0.000309643454394983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002989424356151219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.9018339476635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9909709900160506, dt = 0.0002989424356151219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.36 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002895139097702853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 867.8910945117647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9912699324516657, dt = 0.0002895139097702853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002812771203320006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.937834984993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.991559446361436, dt = 0.0002812771203320006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002741613502980907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.7864215496369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.991840723481768, dt = 0.0002741613502980907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026810525030064087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.2150188651805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9921148848320661, dt = 0.00026810525030064087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026305624563569273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.5015360120968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9923829900823667, dt = 0.00026305624563569273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 259.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002589700184977454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.607886852397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9926460463280025, dt = 0.0002589700184977454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002558100619552382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 782.4537402428568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9929050163465002, dt = 0.0002558100619552382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.89 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002535473024920055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.5512607314172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9931608264084554, dt = 0.0002535473024920055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002521597882544484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.0644277411333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9934143737109474, dt = 0.0002521597882544484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025163244047681795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 728.6217273862765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9936665334992019, dt = 0.00025163244047681795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1993986533120893e-18,8.673617379884035e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025195686590097024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.5274331667566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9939181659396786, dt = 0.00025195686590097024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 268.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025313122835687944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 734.2707983837876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9941701228055796, dt = 0.00025313122835687944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002551601780216046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.9544871093984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9944232540339365, dt = 0.0002551601780216046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 284.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (72.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025805483722354805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.6444669409243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9946784142119581, dt = 0.00025805483722354805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002618328420024614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.7659845445021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9949364690491816, dt = 0.0002618328420024614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 285.46 us (97.1%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026651843897077947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.2137400693091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9951983018911841, dt = 0.00026651843897077947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.000272142637345664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.2589250609616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9954648203301548, dt = 0.000272142637345664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (0.9%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 269.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002787434163307095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.7464369302442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9957369629675005, dt = 0.0002787434163307095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002863659883185509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.9093442636872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9960157063838312, dt = 0.0002863659883185509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029506311865711395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.5778224501469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9963020723721497, dt = 0.00029506311865711395 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003048955029690116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 863.0794189562306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9965971354908069, dt = 0.0003048955029690116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,8.673617379884035e-19,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003159322032309176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 889.3857089516331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9969020309937758, dt = 0.0003159322032309176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032825114400209757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.4387657443286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9972179631970067, dt = 0.00032825114400209757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,1.3010426069826053e-18,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.000341939670332097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.8690720070347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9975462143410089, dt = 0.000341939670332097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.40 us (97.0%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035709516896902707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.5518370388893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.997888154011341, dt = 0.00035709516896902707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,8.673617379884035e-19,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003738257545227644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.4001855769036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.99824524918031, dt = 0.0003738257545227644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 275.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,8.673617379884035e-19,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003922510222008018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.35790952261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9986190749348327, dt = 0.0003922510222008018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,8.673617379884035e-19,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041250286861575184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1161.1415188810495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9990113259570335, dt = 0.00041250286861575184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.0842021724855044e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004347263819478127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1189.9664704371166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9994238288256492, dt = 0.0004347263819478127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.3%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,8.673617379884035e-19,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004590808024157459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1307.5591863401273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.999858555207597, dt = 0.0004590808024157459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048574055354646146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1345.448341725317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0003176360100128, dt = 0.00048574055354646146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.15e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005148963441136748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1417.155141890291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0008033765635593, dt = 0.0005148963441136748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,6.505213034913027e-19,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005467563398149496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1529.3610116022408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.001318272907673, dt = 0.0005467563398149496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005815474027451588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1631.2198274520586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.001865029247488, dt = 0.0005815474027451588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,4.336808689942018e-19,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006195163954711294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1722.2770060806802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.002446576650233, dt = 0.0006195163954711294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,4.336808689942018e-19,0)
sum a = (-5.421010862427522e-20,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006609315449818072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1811.4926457847207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0030660930457043, dt = 0.0006609315449818072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007060838599421311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1856.7579081408223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.003727024590686, dt = 0.0007060838599421311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 265.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,4.336808689942018e-19,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007552885924753383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2022.7121429414583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0044331084506282, dt = 0.0007552885924753383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 240.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008088867330931593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2266.861307350159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0051883970431035, dt = 0.0008088867330931593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 263.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,0,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008672465243397613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2374.9031434401063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0059972837761966, dt = 0.0008672465243397613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009307649751653197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2554.596621205455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0068645303005364, dt = 0.0009307649751653197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 240.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0009998693539508335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2752.7539095469087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0077952952757017, dt = 0.0009998693539508335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-19,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.001075018633420717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2978.8060661571694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0087951646296525, dt = 0.001075018633420717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-19,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011567048553612987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.2118999976315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0098701832630732, dt = 0.0011567048553612987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012454543770756164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3385.4776254477038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0110268881184346, dt = 0.0012454543770756164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013418289548222423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3728.1642766218447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0122723424955102, dt = 0.0013418289548222423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014464266120973576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980.510413881873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0136141714503324, dt = 0.0014464266120973576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015598822325342237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4160.483076096812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0150605980624297, dt = 0.0015598822325342237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016828678084484874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4621.941754794067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0166204802949639, dt = 0.0016828678084484874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018160922667216958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5060.753450922218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0183033481034123, dt = 0.0018160922667216958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 230.37 us (88.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,4.336808689942018e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001960300783902288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5524.081001711067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.020119440370134, dt = 0.001960300783902288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,3.2526065174565133e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021162734922796087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6078.132692466835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.022079741154036, dt = 0.0021162734922796087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,3.2526065174565133e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022848234684826373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6314.32322429012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0241960146463158, dt = 0.0022848234684826373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 230.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024667938861773677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7034.633224522281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0264808381147985, dt = 0.0024667938861773677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.002663054205079659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7457.950823933852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0289476320009758, dt = 0.002663054205079659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028744952602583903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8149.711940466162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0316106862060554, dt = 0.0028744952602583903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.55 us (95.5%)
LB move op cnt : 0
LB apply : 4.76 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.710505431213761e-19,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.003102023109183141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8466.46807493543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0344851814663139, dt = 0.003102023109183141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.710505431213761e-19,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033465514898980385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9428.124252771764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.037587204575497, dt = 0.0033465514898980385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.710505431213761e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036089927429321057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10039.445314583392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.040933756065395, dt = 0.0036089927429321057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.439454888092385e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.003890247053066891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10593.627107681854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0445427488083272, dt = 0.003890247053066891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.168404344971009e-19,0)
sum a = (2.6020852139652106e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.004191189875975453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11366.470223379327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.048432995861394, dt = 0.004191189875975453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.168404344971009e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.004512657430228376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12527.614163303973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0526241857373695, dt = 0.004512657430228376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.004855430158514222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13321.05009083102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0571368431675978, dt = 0.004855430158514222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.005220214094457014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14443.604095091609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.061992273326112, dt = 0.005220214094457014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 286.98 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0056076201144163364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14781.081699286895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.067212487420569, dt = 0.0056076201144163364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.0328790734103208e-19,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.006018141108297909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16578.643114634513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0728201075349855, dt = 0.006018141108297909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.9651164376299768e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.006452127170639044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17082.419424301454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0788382486432835, dt = 0.006452127170639044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.9651164376299768e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.006909758993673639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19264.170349842552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0852903758139225, dt = 0.006909758993673639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.9651164376299768e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0073910197378406145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20913.59546908848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0922001348075963, dt = 0.0073910197378406145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 256.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.9481757786848908e-19,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.007895665761729656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21857.653276738507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0995911545454369, dt = 0.007895665761729656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.9397054492123478e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.008423196711369239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23074.48507877294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1074868203071666, dt = 0.008423196711369239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.9312351197398048e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.008972825595641313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24940.500233526334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1159100170185359, dt = 0.008972825595641313 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.9312351197398048e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.009543449606854408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27282.147817328932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1248828426141773, dt = 0.009543449606854408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.8973538018496328e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.01013362257820081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29226.371966193798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1344262922210318, dt = 0.01013362257820081 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.8973538018496328e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010741530096647868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30686.172422702508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1445599147992325, dt = 0.010741530096647868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.0328790734103208e-19,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011364968403066672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31236.097940533793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1553014448958803, dt = 0.011364968403066672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.0328790734103208e-19,0)
sum a = (-4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.012001328302120352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34287.74520284501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.166666413298947, dt = 0.012001328302120352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,2.168404344971009e-19,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012647585362657445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34891.66761905525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1786677416010674, dt = 0.012647585362657445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,2.168404344971009e-19,0)
sum a = (-2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-02 |
+-----------+-----------+
Info: cfl dt = 0.013300297704552414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35785.51573563869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1913153269637249, dt = 0.013300297704552414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.013955612629606633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37170.18544028659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2046156246682773, dt = 0.013955612629606633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014609283252582721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39353.894928180904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2185712372978839, dt = 0.014609283252582721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.83 us (96.3%)
LB move op cnt : 0
LB apply : 2.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.0328790734103208e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015256696115749653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42032.064815237805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2331805205504667, dt = 0.015256696115749653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-02 |
+-----------+-----------+
Info: cfl dt = 0.015892910521303004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43455.29709641793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2484372166662163, dt = 0.015892910521303004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.3%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.168404344971009e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.01651270998938458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47857.199035311525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2643301271875194, dt = 0.01651270998938458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.303929616531697e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.017110665848711282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49866.459045586394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2808428371769038, dt = 0.017110665848711282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.168404344971009e-19,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017681212501264434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51459.445439338604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.297953503025615, dt = 0.017681212501264434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 256.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018218733387501407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52151.28554865126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3156347155268795, dt = 0.018218733387501407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 258.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.168404344971009e-19,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018717656135766217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54025.89801894981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.333853448914381, dt = 0.018717656135766217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (1.1%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.439454888092385e-19,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01917255483633171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54631.65881483488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3525711050501472, dt = 0.01917255483633171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.439454888092385e-19,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.01957825686867691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58019.777331989055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.371743659886479, dt = 0.01957825686867691 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.710505431213761e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019929951264777923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57734.42546087857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3913219167551558, dt = 0.019929951264777923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.02022329524627079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59884.12138207606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4112518680199337, dt = 0.02022329524627079 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 262.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.02045451536169347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59832.4803163843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4314751632662046, dt = 0.02045451536169347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1519648082658485e-18,2.981555974335137e-19,0)
sum a = (2.168404344971009e-19,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02062049959841854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61016.46409846696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4519296786278981, dt = 0.02062049959841854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.145188544687814e-18,2.981555974335137e-19,0)
sum a = (2.168404344971009e-19,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02071887697060531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61771.00427399422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4725501782263166, dt = 0.02071887697060531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1401063470042883e-18,2.981555974335137e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020748081396770198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62455.21890419372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4932690551969219, dt = 0.020748081396770198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1401063470042883e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02070739717288603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62550.00948668466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.514017136593692, dt = 0.02070739717288603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.710505431213761e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02059698400036626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63798.22402908895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.534724533766578, dt = 0.02059698400036626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.145188544687814e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020417880311147565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62109.15792017648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5553215177669444, dt = 0.020417880311147565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1519648082658485e-18,2.981555974335137e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020171984501699575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62153.20498695387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.575739398078092, dt = 0.020171984501699575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1519648082658485e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.01986201459364223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59655.12997949462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5959113825797917, dt = 0.01986201459364223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.019491447726304522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59480.61439191701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.615773397173434, dt = 0.019491447726304522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019064441702153177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58495.64534309267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6352648448997387, dt = 0.019064441702153177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 243.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.439454888092385e-19,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.01858574150075873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56481.5167910997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.654329286601892, dt = 0.01858574150075873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,2.439454888092385e-19,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-02 |
+-----------+-----------+
Info: cfl dt = 0.018060574211164387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54386.23808391093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6729150281026506, dt = 0.018060574211164387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-02 |
+-----------+-----------+
Info: cfl dt = 0.01749453617873014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52001.22461661097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.690975602313815, dt = 0.01749453617873014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.01689347630743275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52076.50049358184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7084701384925451, dt = 0.01689347630743275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.574980159653073e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-02 |
+-----------+-----------+
Info: cfl dt = 0.016263379403542787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51773.40872499006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7253636147999778, dt = 0.016263379403542787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.710505431213761e-19,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015610253206652302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49892.98097765529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7416269942035205, dt = 0.015610253206652302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.574980159653073e-19,0)
sum a = (4.336808689942018e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-02 |
+-----------+-----------+
Info: cfl dt = 0.014940022355913941 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47919.613026962055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7572372474101727, dt = 0.014940022355913941 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.574980159653073e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014258432018417465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46152.76666585734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7721772697660867, dt = 0.014258432018417465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 283.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.439454888092385e-19,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013570963303303383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42431.179192005235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.786435701784504, dt = 0.013570963303303383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.012882761941369914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39270.48499600682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8000066650878075, dt = 0.012882761941369914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.574980159653073e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-02 |
+-----------+-----------+
Info: cfl dt = 0.01219858106551448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38936.15378778073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8128894270291773, dt = 0.01219858106551448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0299920638612292e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-02 |
+-----------+-----------+
Info: cfl dt = 0.01152273831759887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37380.19779748857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8250880080946918, dt = 0.01152273831759887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.24 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,2.439454888092385e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.010859086960742852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34267.43256347074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8366107464122907, dt = 0.010859086960742852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.96 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.371692252312041e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010211000213259934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31151.657209466022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8474698333730335, dt = 0.010211000213259934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.371692252312041e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.00958136765388341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30272.72992638093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8576808335862933, dt = 0.00958136765388341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.337810934421869e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.008972602282238312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29122.0833349349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8672622012401767, dt = 0.008972602282238312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.337810934421869e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.008386656651537197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26373.415593179063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.876234803522415, dt = 0.008386656651537197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.320870275476783e-19,0)
sum a = (4.336808689942018e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.007825046414587622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24986.108284465514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8846214601739522, dt = 0.007825046414587622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.371692252312041e-19,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.007288879627821212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23021.839229337213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8924465065885399, dt = 0.007288879627821212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.439454888092385e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.006778890227187078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21708.169247953574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.899735386216361, dt = 0.006778890227187078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.507217523872729e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.006295474209364009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20090.710162398074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.906514276443548, dt = 0.006295474209364009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.574980159653073e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.005838727206951401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19445.813873863503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.912809750652912, dt = 0.005838727206951401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.75 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.574980159653073e-19,0)
sum a = (1.734723475976807e-18,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.005408482323270166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17241.90600114105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9186484778598634, dt = 0.005408482323270166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.6%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 431.56 us (97.9%)
LB move op cnt : 0
LB apply : 2.05 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,2.574980159653073e-19,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.005004347278998677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.403e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13877.7680742954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9240569601831334, dt = 0.005004347278998677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.710505431213761e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.004625740108995045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14948.960625780184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9290613074621321, dt = 0.004625740108995045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.004271922825414664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13782.363212177323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9336870475711272, dt = 0.004271922825414664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.168404344971009e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.003942032626867652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12845.645306285527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9379589703965419, dt = 0.003942032626867652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.003635110379094039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11791.107768300524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9419010030234094, dt = 0.003635110379094039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.439454888092385e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.003350126218397948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11074.587753447302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9455361134025035, dt = 0.003350126218397948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (1.2%)
patch tree reduce : 480.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.80 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,1.6263032587282567e-19,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.003086002234221363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9986.151060291071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9488862396209015, dt = 0.003086002234221363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.168404344971009e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028416322721984714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9159.639804200147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9519722418551229, dt = 0.0028416322721984714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.6263032587282567e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.002615898965062324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8321.654280224724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9548138741273213, dt = 0.002615898965062324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.6263032587282567e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.002407688147661938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8069.728757166441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9574297730923838, dt = 0.002407688147661938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,1.0842021724855044e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.00221590084618594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6932.993761499476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9598374612400458, dt = 0.00221590084618594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,1.6263032587282567e-19,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020394630527016382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6608.672818338184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9620533620862317, dt = 0.0020394630527016382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.168404344971009e-19,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018773335065158528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5873.996633184096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9640928251389334, dt = 0.0018773335065158528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017285097057420991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5636.17128629942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9659701586454492, dt = 0.0017285097057420991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.1%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015920323677323957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5076.709841768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9676986683511912, dt = 0.0015920323677323957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014669885473957897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4898.360173118217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9692907007189235, dt = 0.0014669885473957897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 252.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.001352513609337418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4374.325996866452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9707576892663192, dt = 0.001352513609337418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012477922344321989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4143.067552521472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9721102028756567, dt = 0.0012477922344321989 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011520586248910565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3535.389725731795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.973357995110089, dt = 0.0011520586248910565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 247.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010645960548734126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3490.787028056348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.97451005373498, dt = 0.0010645960548734126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 265.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009847358968526252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068.0345421292627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9755746497898534, dt = 0.0009847358968526252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,3.2526065174565133e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009118562376982149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2957.2832651536355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.976559385686706, dt = 0.0009118562376982149 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-19,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008453801831141241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2770.6754803266163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9774712419244043, dt = 0.0008453801831141241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,4.336808689942018e-19,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007847739348706825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2517.633842571271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9783166221075184, dt = 0.0007847739348706825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (8.673617379884035e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007295447123067962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2370.3652265873325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.979101396042389, dt = 0.0007295447123067962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,6.505213034913027e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006792385779071863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2186.762632567349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.979830940754696, dt = 0.0006792385779071863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,6.505213034913027e-19,0)
sum a = (-4.336808689942018e-19,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006334382163747184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2037.6223426975187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.980510179332603, dt = 0.0006334382163747184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,6.505213034913027e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005917607074796955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1868.8065703480863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9811436175489776, dt = 0.0005917607074796955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,4.336808689942018e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005538553250098817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1726.5404468410577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9817353782564573, dt = 0.0005538553250098817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,4.336808689942018e-19,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005194013872835333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.004754405889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9822892335814672, dt = 0.0005194013872835333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,4.336808689942018e-19,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.000488106178829509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1565.9779373278182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9828086349687508, dt = 0.000488106178829509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004597029578863489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1437.0540289247522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9832967411475804, dt = 0.0004597029578863489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004339490602286616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1417.3489482837417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9837564441054667, dt = 0.0004339490602286616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,6.505213034913027e-19,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004106241063999205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.754805222586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9841903931656955, dt = 0.0004106241063999205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,6.505213034913027e-19,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003895283166266309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.0224381272806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9846010172720954, dt = 0.0003895283166266309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.000370480935426893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1177.755741251773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.984990545588722, dt = 0.000370480935426893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,8.673617379884035e-19,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003533187661308923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1101.2425471873562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9853610265241488, dt = 0.0003533187661308923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003378948141334353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.6730225987758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9857143452902797, dt = 0.0003378948141334353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.000324077036638347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 987.0953830976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9860522401044132, dt = 0.000324077036638347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031174719587745994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 943.2253581108683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9863763171410516, dt = 0.00031174719587745994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030079981224599706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.5663115410371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9866880643369291, dt = 0.00030079981224599706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.000291141213450422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 922.9001248445378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.986988864149175, dt = 0.000291141213450422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002826886755791548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 895.1993649025198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9872800053626256, dt = 0.0002826886755791548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002753696519508257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.5436430668458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9875626940382047, dt = 0.0002753696519508257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026912108564345336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.4896594225913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9878380636901556, dt = 0.00026912108564345336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002638888017395936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.7821952697144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.988107184775799, dt = 0.0002638888017395936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025962697551912327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.1242294015001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9883710735775386, dt = 0.00025962697551912327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 236.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025629767307793193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.6637855490419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9886307005530577, dt = 0.00025629767307793193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025387046113505837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 752.5053343157348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9888869982261357, dt = 0.00025387046113505837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002523220831025246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.1231973004226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9891408686872707, dt = 0.0002523220831025246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 221.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (61.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002516361988230304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.166365441422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9893931907703732, dt = 0.0002516361988230304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2095630486791409e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025180318572390337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.9261298549685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9896448269691962, dt = 0.00025180318572390337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2061749168901237e-18,2.6020852139652106e-18,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025281999948575685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.2932356969451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9898966301549201, dt = 0.00025281999948575685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.49 us (96.2%)
LB move op cnt : 0
LB apply : 2.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.000254690092676542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.7382740270747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.990149450154406, dt = 0.000254690092676542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002574233901522738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.6795440779714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9904041402470825, dt = 0.0002574233901522738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.30 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026103632037130465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.152702911821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9906615636372347, dt = 0.00026103632037130465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002655519021066604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.4372629280998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.990922599957606, dt = 0.0002655519021066604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 931.00 ns (0.3%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 296.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.734723475976807e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002709998863677616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.522472085785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9911881518597125, dt = 0.0002709998863677616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002774169536560117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.0409098412889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9914591517460802, dt = 0.0002774169536560117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002848469669751992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.3811228574294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9917365686997361, dt = 0.0002848469669751992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002933412812940546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 863.0985227789508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9920214156667113, dt = 0.0002933412812940546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 276.40 us (97.0%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,1.3010426069826053e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030295911041079064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.5994813244478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9923147569480053, dt = 0.00030295911041079064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031376795239346916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 883.3929178732582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9926177160584162, dt = 0.00031376795239346916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.26e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032584407496025967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.8533689347576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9929314840108097, dt = 0.00032584407496025967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003392730623137059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.0629868092833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.99325732808577, dt = 0.0003392730623137059 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035415042504544075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1004.6961803323434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9935966011480837, dt = 0.00035415042504544075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037058227477346564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.4649742320494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9939507515731292, dt = 0.00037058227477346564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,8.673617379884035e-19,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038868606515258614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1098.9441252611048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9943213338479027, dt = 0.00038868606515258614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004085914007975496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.863e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 751.2345920838203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9947100199130552, dt = 0.0004085914007975496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043044091546345285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1227.8830916024758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9951186113138528, dt = 0.00043044091546345285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-19,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045439122052245843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.0296729680601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9955490522293162, dt = 0.00045439122052245843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004806139243405882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.6159906764126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9960034434498386, dt = 0.0004806139243405882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005092967225714852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1443.9354794669916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.996484057374179, dt = 0.0005092967225714852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005406445586206827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1556.075888983578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9969933540967506, dt = 0.0005406445586206827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 235.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005748808525661461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1632.8890003133165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9975339986553713, dt = 0.0005748808525661461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,4.336808689942018e-19,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006122487956173698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1715.513168453651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9981088795079374, dt = 0.0006122487956173698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006530127057215432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1811.7070851790306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9987211283035546, dt = 0.0006530127057215432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,2.168404344971009e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006974594381432787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1970.6485213696994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9993741410092762, dt = 0.0006974594381432787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,2.168404344971009e-19,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007458998427130076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161.0399564460167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0000716004474195, dt = 0.0007458998427130076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,0,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007986702569143637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2208.739275011497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0008175002901325, dt = 0.0007986702569143637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-19,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008561340210163547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2359.6756977899554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.001616170547047, dt = 0.0008561340210163547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-19,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009186829980039744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2537.965511650594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0024723045680632, dt = 0.0009186829980039744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-4.336808689942018e-19,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009867390770728335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791.227767981044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.003390987566067, dt = 0.0009867390770728335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 292.93 us (97.0%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.336808689942018e-19,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010607556348824114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2845.692342879322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.00437772664314, dt = 0.0010607556348824114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-3.2526065174565133e-19,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011412189235648024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3174.122634986298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0054384822780227, dt = 0.0011412189235648024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.3%)
patch tree reduce : 632.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012286493486237731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3344.9201380775107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0065797012015874, dt = 0.0012286493486237731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-3.2526065174565133e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013236025933042398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3630.349247151199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0078083505502113, dt = 0.0013236025933042398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-3.2526065174565133e-19,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014266705387506135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3810.061293922144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0091319531435157, dt = 0.0014266705387506135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-3.2526065174565133e-19,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015384819213083152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4240.980459423611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0105586236822663, dt = 0.0015384819213083152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-4.336808689942018e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001659702659686138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4660.920814673442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0120971056035746, dt = 0.001659702659686138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.336808689942018e-19,0)
sum a = (-1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001791035775450547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5115.1496465326545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0137568082632606, dt = 0.001791035775450547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-5.421010862427522e-19,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001933220820570459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.291e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4992.844005487069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.015547844038711, dt = 0.001933220820570459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-3.7947076036992655e-19,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002087032715627385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5863.921265580025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0174810648592816, dt = 0.002087032715627385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-3.7947076036992655e-19,0)
sum a = (1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022532798920679798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6347.026304670215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.019568097574909, dt = 0.0022532798920679798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.336808689942018e-19,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024328016217943322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6538.990713997599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.021821377466977, dt = 0.0024328016217943322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.336808689942018e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026264644078379663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7454.2102840024545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0242541790887714, dt = 0.0026264644078379663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 243.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.336808689942018e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028351573013207765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7482.674303088011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.026880643496609, dt = 0.0028351573013207765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030597860029537337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8523.591639188637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0297158007979297, dt = 0.0030597860029537337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-4.87890977618477e-19,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.003301265602665288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9194.682479660634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0327755868008834, dt = 0.003301265602665288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-4.87890977618477e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035605118094152108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10011.503904164838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0360768524035486, dt = 0.0035605118094152108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-5.421010862427522e-19,0)
sum a = (-1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.003838430525792978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10716.668238955675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0396373642129637, dt = 0.003838430525792978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-5.421010862427522e-19,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.004135905629703191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11815.736209855022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0434757947387565, dt = 0.004135905629703191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044537848394927675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12562.698715597662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0476117003684595, dt = 0.0044537848394927675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-5.421010862427522e-19,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.004792863560548751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13586.471021241083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0520654852079523, dt = 0.004792863560548751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 222.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.149960319306146e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0051538666420061765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14072.490557861827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.056858348768501, dt = 0.0051538666420061765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 331.99 us (97.0%)
LB move op cnt : 0
LB apply : 2.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.149960319306146e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.005537428013053044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.362e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13620.294951955282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.062012215410507, dt = 0.005537428013053044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 530.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.285485590866834e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.005944068220609892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16465.95657175811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.06754964342356, dt = 0.005944068220609892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.285485590866834e-19,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.006374169954907252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17857.6369130667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.07349371164417, dt = 0.006374169954907252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.353248226647178e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.006827951727379982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18363.235965632754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.079867881599077, dt = 0.006827951727379982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.38712954453735e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.007305439956574289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21018.477677259092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.086695833326457, dt = 0.007305439956574289 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 257.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.38712954453735e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.00780643982202359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21545.680304288348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0940012732830313, dt = 0.00780643982202359 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.395599874009893e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.008330505362088852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23950.33838530359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.101807713105055, dt = 0.008330505362088852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.38712954453735e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.008876909417384228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24985.165689987018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.110138218467144, dt = 0.008876909417384228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.353248226647178e-19,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.00944461415326767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26439.679534450002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1190151278845284, dt = 0.00944461415326767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.353248226647178e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.00e-02 |
+-----------+-----------+
Info: cfl dt = 0.010032243028314423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26645.933591504494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.128459742037796, dt = 0.010032243028314423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.353248226647178e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010638055204666775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30798.340957233173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1384919850661106, dt = 0.010638055204666775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.68 us (97.0%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.285485590866834e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.011259923513222296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30975.053613527525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1491300402707774, dt = 0.011259923513222296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-5.285485590866834e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011895317183041052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33094.41282866264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1603899637839996, dt = 0.011895317183041052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.285485590866834e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-02 |
+-----------+-----------+
Info: cfl dt = 0.012541290610307152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34738.6291326751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1722852809670408, dt = 0.012541290610307152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.95 us (4.4%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 231.73 us (93.2%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-02 |
+-----------+-----------+
Info: cfl dt = 0.013194479467183745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37969.9042247564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.184826571577348, dt = 0.013194479467183745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.285485590866834e-19,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-02 |
+-----------+-----------+
Info: cfl dt = 0.013851105424360107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38752.77271833375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1980210510445315, dt = 0.013851105424360107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.285485590866834e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-02 |
+-----------+-----------+
Info: cfl dt = 0.014506990673050975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42181.076138714736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2118721564688917, dt = 0.014506990673050975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.285485590866834e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-02 |
+-----------+-----------+
Info: cfl dt = 0.015157583274261976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40034.040457044706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2263791471419427, dt = 0.015157583274261976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.285485590866834e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01579799412944265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46259.704495766404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.241536730416205, dt = 0.01579799412944265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0299920638612292e-18,-5.285485590866834e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.016423046055013723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46718.2803271956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2573347245456477, dt = 0.016423046055013723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.285485590866834e-19,0)
sum a = (4.336808689942018e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-02 |
+-----------+-----------+
Info: cfl dt = 0.017027335056162364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48479.2893434136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2737577706006613, dt = 0.017027335056162364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.017605303440779912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51127.0822126379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.290785105656824, dt = 0.017605303440779912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.111307226797642e-18,-5.149960319306146e-19,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018151323906632322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53664.29815593662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3083904090976035, dt = 0.018151323906632322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.23 us (9.3%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 239.02 us (88.5%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.111307226797642e-18,-4.87890977618477e-19,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018659793194240718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52627.321255229006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3265417330042357, dt = 0.018659793194240718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019125233350822564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57248.67819271837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3452015261984767, dt = 0.019125233350822564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.019542398128159125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55271.735385248714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.364326759549299, dt = 0.019542398128159125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019906381573722737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59227.31515528833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3838691576774584, dt = 0.019906381573722737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1248597539537109e-18,-5.421010862427522e-19,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.02021272550497401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57898.47880636958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.403775539251181, dt = 0.02021272550497401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.111307226797642e-18,-5.692061405548898e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020457522314652657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60977.56749265825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4239882647561553, dt = 0.020457522314652657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1248597539537109e-18,-5.421010862427522e-19,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020637509468395012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61691.15032610034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.444445787070808, dt = 0.020637509468395012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1248597539537109e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020750152145408356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62171.31651015857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.465083296539203, dt = 0.020750152145408356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1265538198482195e-18,-5.421010862427522e-19,0)
sum a = (0,-2.117582368135751e-22,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020793710747913387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62403.97020292426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.485833448684611, dt = 0.020793710747913387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.128247885742728e-18,-5.149960319306146e-19,0)
sum a = (0,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.02076729046282151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63319.25984438459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5066271594325245, dt = 0.02076729046282151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 294.53 us (97.1%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1248597539537109e-18,-5.149960319306146e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020670870683429227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60146.907922449696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.527394449895346, dt = 0.020670870683429227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1316360175317453e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020505312860497362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59844.49583654292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5480653205787753, dt = 0.020505312860497362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1248597539537109e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.020272346210194345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59464.36832078474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.568570633439273, dt = 0.020272346210194345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.111307226797642e-18,-5.149960319306146e-19,0)
sum a = (4.336808689942018e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-02 |
+-----------+-----------+
Info: cfl dt = 0.019974531611670353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62164.71791096107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.588842979649467, dt = 0.019974531611670353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.019615204925349794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60156.95368451223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.608817511261137, dt = 0.019615204925349794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.111307226797642e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019198401799876596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52369.28042959008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.628432716186487, dt = 0.019198401799876596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.421010862427522e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018728766760690088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57068.55772608093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.647631117986364, dt = 0.018728766760690088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 279.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018211449944489807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54255.09034136922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6663598847470538, dt = 0.018211449944489807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.5%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 228.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017651995231125837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55536.9173011418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6845713346915434, dt = 0.017651995231125837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.25 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.017056223711393193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53119.46083409444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7022233299226692, dt = 0.017056223711393193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.149960319306146e-19,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.01643011641417648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50126.867733126106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7192795536340624, dt = 0.01643011641417648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.149960319306146e-19,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01577970001182428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49680.88237876182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.735709670048239, dt = 0.01577970001182428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.285485590866834e-19,0)
sum a = (4.336808689942018e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015110938853168727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46840.36722543996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7514893700600633, dt = 0.015110938853168727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.421010862427522e-19,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.01442963617319791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44249.838633809224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7666003089132323, dt = 0.01442963617319791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 243.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.421010862427522e-19,0)
sum a = (2.168404344971009e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013741346736846414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43104.88657465875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.78102994508643, dt = 0.013741346736846414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.013051302533674827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40882.94021269796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7947712918232765, dt = 0.013051302533674827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-02 |
+-----------+-----------+
Info: cfl dt = 0.012364352491072742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39960.13665821791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8078225943569515, dt = 0.012364352491072742 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-02 |
+-----------+-----------+
Info: cfl dt = 0.011684916552529942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36421.20759707747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.820186946848024, dt = 0.011684916552529942 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.285485590866834e-19,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.0110169539045643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34569.76466744282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.831871863400554, dt = 0.0110169539045643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.285485590866834e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010363944653420174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32469.814385268517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8428888173051186, dt = 0.010363944653420174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.285485590866834e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00972888386478946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30609.253570017878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.853252761958539, dt = 0.00972888386478946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 292.71 us (97.1%)
LB move op cnt : 0
LB apply : 1.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.285485590866834e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.00911428659274636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28007.80315938967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.862981645823328, dt = 0.00911428659274636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 222.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.285485590866834e-19,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.008522202336953447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26966.34222492358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8720959324160744, dt = 0.008522202336953447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 426.94 us (97.7%)
LB move op cnt : 0
LB apply : 2.39 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.30242624981192e-19,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.007954237273337012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.401e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21893.15460045071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.880618134753028, dt = 0.007954237273337012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-5.268544931921748e-19,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.007411582591916149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24116.92429956537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.888572372026365, dt = 0.007411582591916149 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-5.285485590866834e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.006895047332636542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22410.37037827956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8959839546182815, dt = 0.006895047332636542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.21772295508649e-19,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0064050942209370465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20512.274802015636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.902879001950918, dt = 0.0064050942209370465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 249.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.21772295508649e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.005941877154324635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18836.065572669373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.909284096171855, dt = 0.005941877154324635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.149960319306146e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.005505279165306626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.453e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14720.014971059014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9152259733261796, dt = 0.005505279165306626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.149960319306146e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.005094949872069195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16802.943795573578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9207312524914864, dt = 0.005094949872069195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.149960319306146e-19,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.004710341615741644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14998.907935507088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9258262023635555, dt = 0.004710341615741644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.149960319306146e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.004350743663575561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14244.302664161678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.930536543979297, dt = 0.004350743663575561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.149960319306146e-19,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040153140247000466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12868.152075289663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.934887287642873, dt = 0.0040153140247000466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.149960319306146e-19,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037031085751138755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12159.194841385275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.938902601667573, dt = 0.0037031085751138755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.52 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.003413107318845069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10728.344337348484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.942605710242687, dt = 0.003413107318845069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031442377218288534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10241.762910028763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.946018817561532, dt = 0.0031442377218288534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028953951442745986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9127.703351574246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9491630552833605, dt = 0.0028953951442745986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.51 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026654604672227754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8528.584302075034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9520584504276353, dt = 0.0026654604672227754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 340.00 ns (0.1%)
LB compute : 280.88 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.002453315061335758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7691.459884112585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.954723910894858, dt = 0.002453315061335758 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.87890977618477e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022578532827765125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7357.2781706704045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.957177225956194, dt = 0.0022578532827765125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020779927045232187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6743.304887069552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9594350792389705, dt = 0.0020779927045232187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.963111948670274e-19,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019126823038743582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6289.937591676941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.961513071943494, dt = 0.0019126823038743582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-6.505213034913027e-19,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017609088303492386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5802.507939406599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.963425754247368, dt = 0.0017609088303492386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.001621701574644466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5342.112980345894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9651866630777173, dt = 0.001621701574644466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.3%)
patch tree reduce : 532.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001494135750513745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4730.149613664213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9668083646523615, dt = 0.001494135750513745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013773346889070636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4480.936010884328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.968302500402875, dt = 0.0013773346889070636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 246.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-5.421010862427522e-19,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012704710287076055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4022.475413280409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.969679835091782, dt = 0.0012704710287076055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011727670719826726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3824.4896536636347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9709503061204896, dt = 0.0011727670719826726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-6.505213034913027e-19,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010834944546496005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3429.1100632040793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9721230731924724, dt = 0.0010834944546496005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-5.421010862427522e-19,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010019732664908502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3161.5720538640103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.973206567647122, dt = 0.0010019732664908502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.3%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009275707380127571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3082.4440415063123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.974208540913613, dt = 0.0009275707380127571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-4.336808689942018e-19,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008596995960694345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2824.9905518048236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9751361116516257, dt = 0.0008596995960694345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-4.336808689942018e-19,0)
sum a = (1.734723475976807e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007978161756930027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2575.973273969221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.975995811247695, dt = 0.0007978161756930027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007414183623172281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2368.799197430413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.976793627423388, dt = 0.0007414183623172281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.336808689942018e-19,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006900434266154441 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2281.232675065914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9775350457857055, dt = 0.0006900434266154441 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-4.336808689942018e-19,0)
sum a = (-4.336808689942018e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006432658035020032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2039.0550804207205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9782250892123208, dt = 0.0006432658035020032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006006948574356136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1879.6056736668588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.978868355015823, dt = 0.0006006948574356136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-8.673617379884035e-19,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.000561972667950554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1794.065101304012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9794690498732583, dt = 0.000561972667950554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005267718622469388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.495e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1353.2325480711181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9800310225412088, dt = 0.0005267718622469388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.0842021724855044e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004947935156019133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1574.4612151225851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9805577944034556, dt = 0.0004947935156019133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.0842021724855044e-18,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004657651352226583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1461.5930924994298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9810525879190575, dt = 0.0004657651352226583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.3010426069826053e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004394387388515276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1410.183305931433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.98151835305428, dt = 0.0004394387388515276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 450.00 ns (0.2%)
LB compute : 228.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.3010426069826053e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041558903585809114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1312.143674021374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9819577917931315, dt = 0.00041558903585809114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 282.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-1.5178830414797062e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039401171562168517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1173.3514830713987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9823733808289896, dt = 0.00039401171562168517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.734723475976807e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003745218456367865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1180.011427267292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9827673925446114, dt = 0.0003745218456367865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.734723475976807e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035695237988468725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1111.8567586940126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9831419143902482, dt = 0.00035695237988468725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034115277653848326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.5858066176284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.983498866770133, dt = 0.00034115277653848326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032698772294166757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1013.3535062357687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9838400195466717, dt = 0.00032698772294166757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031433596496822745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1001.555142555953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.984167007269613, dt = 0.00031433596496822745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003030892372854967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 918.6006749707104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9844813432345814, dt = 0.0003030892372854967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.000293151290657892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 896.8869351228975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9847844324718666, dt = 0.000293151290657892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (17.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002844370122136724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.7900463214024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9850775837625245, dt = 0.0002844370122136724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 260.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027687163451684216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.8445752416009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9853620207747382, dt = 0.00027687163451684216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027039002931581867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.7301150130731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.985638892409255, dt = 0.00027039002931581867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002649360819571767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.9296169089703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.985909282438571, dt = 0.0002649360819571767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5720931501039814e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002604621426379628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.4360041141023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9861742185205284, dt = 0.0002604621426379628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-2.6020852139652106e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002569285509081633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.5401308062801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9864346806631663, dt = 0.0002569285509081633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.4%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-2.168404344971009e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002543032301130461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.524183104549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9866916092140743, dt = 0.0002543032301130461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6805133673525319e-18,-1.734723475976807e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025256134877266065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 758.8775211103056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9869459124441873, dt = 0.00025256134877266065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6805133673525319e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025168504622409945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.146382216627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9871984737929598, dt = 0.00025168504622409945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6938541362717871e-18,-2.168404344971009e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025166322019411685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.1439947026237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.987450158839184, dt = 0.00025166322019411685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6940658945086007e-18,-2.168404344971009e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002524913743195379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.9014675391097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9877018220593783, dt = 0.0002524913743195379 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7076184216646695e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025417152398582254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 741.663706887049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.987954313433698, dt = 0.00025417152398582254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025671215920618305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.4083735990713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9882084849576835, dt = 0.00025671215920618305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7889335846010823e-18,-2.6020852139652106e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002601282636113662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.1904779678632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9884651971168896, dt = 0.0002601282636113662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8431436932253575e-18,-2.6020852139652106e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002644413889605791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.8605657073774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.988725325380501, dt = 0.0002644413889605791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 253.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8431436932253575e-18,-2.6020852139652106e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002696797849142107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.3329783181493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9889897667694614, dt = 0.0002696797849142107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027587858412615306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.410e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.5470616833536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9892594465543754, dt = 0.00027587858412615306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-1.734723475976807e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002830800430147039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.261489663381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9895353251385015, dt = 0.0002830800430147039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.40 us (89.2%)
LB move op cnt : 0
LB apply : 22.96 us (8.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029133383885295396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.5406133290794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9898184051815164, dt = 0.00029133383885295396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030069742407851183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 886.543896332222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9901097390203693, dt = 0.00030069742407851183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-2.168404344971009e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031123643895403284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.7990281699921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.990410436444448, dt = 0.00031123643895403284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032302518390916085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 903.9774969862217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.990721672883402, dt = 0.00032302518390916085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 276.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033614715305504105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 898.4714212658582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.991044698067311, dt = 0.00033614715305504105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.734723475976807e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035069563047726994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.4343483449358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.991380845220366, dt = 0.00035069563047726994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.96 us (8.5%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.59 us (89.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003667743509734072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1011.9033655336634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9917315408508434, dt = 0.0003667743509734072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.3010426069826053e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003844982268968384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1121.1274411362394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9920983152018166, dt = 0.0003844982268968384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-1.734723475976807e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040399414268793115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1144.338068909127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9924828134287136, dt = 0.00040399414268793115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.734723475976807e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004254018185021819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1191.9848948118336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9928868075714017, dt = 0.0004254018185021819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.951563910473908e-18,0)
sum a = (-6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.49e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004488747440672727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1257.8347785655951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.993312209389904, dt = 0.0004488747440672727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.951563910473908e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047458118349807813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1355.0140273880625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9937610841339715, dt = 0.00047458118349807813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.951563910473908e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005027052512494338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1441.003165913969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9942356653174693, dt = 0.0005027052512494338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.951563910473908e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.000533448058666693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480.5951906422385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9947383705687187, dt = 0.000533448058666693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.951563910473908e-18,0)
sum a = (1.734723475976807e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005670289296765444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1577.4371593838928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9952718186273852, dt = 0.0005670289296765444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.951563910473908e-18,0)
sum a = (-1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006036866830146361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1686.7313000567337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.995838847557062, dt = 0.0006036866830146361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-1.951563910473908e-18,0)
sum a = (-2.168404344971009e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006436809769784583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1822.604731178649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9964425342400767, dt = 0.0006436809769784583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 265.62 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-1.951563910473908e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006872937109863563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1869.296937591821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.997086215217055, dt = 0.0006872937109863563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 231.34 us (95.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-1.951563910473908e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007348304761760386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2103.405870519576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9977735089280415, dt = 0.0007348304761760386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 259.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.000786622044845039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226.2493050696635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9985083394042173, dt = 0.000786622044845039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.000843025885675257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2368.3408475345445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9992949614490625, dt = 0.000843025885675257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 260.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009044276883462885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2392.994066924918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0001379873347376, dt = 0.0009044276883462885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.2768245622195593e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009712428772792144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2691.1884082074816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.001042415023084, dt = 0.0009712428772792144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010439180898162833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2773.6236555820105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.002013657900363, dt = 0.0010439180898162833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (61.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.2768245622195593e-18,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011229325890874972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.7% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3105.5819773348603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.003057575990179, dt = 0.0011229325890874972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.00120879957610301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3335.9497817449096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0041805085792666, dt = 0.00120879957610301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.001302067359209398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3630.813192014988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0053893081553698, dt = 0.001302067359209398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (-3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.00140332033194003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3847.881027521066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.006691375514579, dt = 0.00140332033194003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.0599841277224584e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015131797024743293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4138.153684018164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.008094695846519, dt = 0.0015131797024743293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.34 us (96.8%)
LB move op cnt : 0
LB apply : 2.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.168404344971009e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001632303909420785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4406.460333306843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0096078755489932, dt = 0.001632303909420785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001761388649508187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4801.760835832961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.011240179458414, dt = 0.001761388649508187 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.168404344971009e-18,0)
sum a = (1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019011664331019078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5284.500633564687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.013001568107922, dt = 0.0019011664331019078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.168404344971009e-18,0)
sum a = (1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020524055733990906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5730.844981274705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.014902734541024, dt = 0.0020524055733990906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 230.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.168404344971009e-18,0)
sum a = (-1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002215908504899496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6304.247533292485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0169551401144235, dt = 0.002215908504899496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.2768245622195593e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023925093165696274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6485.638596767604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.019171048619323, dt = 0.0023925093165696274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.2768245622195593e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.002583070375371721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7288.988735793728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0215635579358926, dt = 0.002583070375371721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.3310346708438345e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.002788477906966556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7789.769861192437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0241466283112644, dt = 0.002788477906966556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.3310346708438345e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030096363929777484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8572.751426223847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.026935106218231, dt = 0.0030096363929777484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032474616389000913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8869.741664759144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.029944742611209, dt = 0.0032474616389000913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.3310346708438345e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.003502872364346015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9192.4612435723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.033192204250109, dt = 0.003502872364346015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 271.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.3310346708438345e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.003776780168781111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.372e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9190.23901384012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.036695076614455, dt = 0.003776780168781111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 250.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-2.3310346708438345e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.004070077732255571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11247.763178342337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.040471856783236, dt = 0.004070077732255571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.358139725155972e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0043836251230616775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11756.991381516438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.044541934515492, dt = 0.0043836251230616775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.60 us (96.2%)
LB move op cnt : 0
LB apply : 2.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,-2.358139725155972e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.004718234103996644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12836.289992201162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0489255596385534, dt = 0.004718234103996644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-18,-2.358139725155972e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.005074650357298491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14283.924213037206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.05364379374255, dt = 0.005074650357298491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.358139725155972e-18,0)
sum a = (-8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.005453533586664353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15008.38069714876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0587184440998487, dt = 0.005453533586664353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.358139725155972e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.005855435504296006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16310.432587758545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.064171977686513, dt = 0.005855435504296006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.371692252312041e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.006280775772720544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17407.118414982997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.070027413190809, dt = 0.006280775772720544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.3784685158900754e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.006729816045990919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18419.222429601657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0763081889635298, dt = 0.006729816045990919 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.3818566476790926e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.007202632343142002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20171.36115080753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0830380050095205, dt = 0.007202632343142002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.3852447794681098e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.007699086088233286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22082.185571867092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0902406373526627, dt = 0.007699086088233286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.3857741750601437e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.00821879426495545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22883.771744136848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.097939723440896, dt = 0.00821879426495545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.388632911257127e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.008761099257673106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23775.557816653865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1061585177058513, dt = 0.008761099257673106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.388632911257127e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.009325039081855412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26693.284376640873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1149196169635243, dt = 0.009325039081855412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.392021043046144e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.009909318840770598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27661.64169110182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.12424465604538, dt = 0.009909318840770598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5178830414797062e-18,-2.392021043046144e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010512284376373643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30107.410249489523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1341539748861504, dt = 0.010512284376373643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4094628242311558e-18,-2.405573570202213e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.01113189920336966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31569.1852363338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1446662592625243, dt = 0.01113189920336966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3552527156068805e-18,-2.4123498337802474e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.01176572591802182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31341.276908741005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.155798158465894, dt = 0.01176572591802182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.4123498337802474e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-02 |
+-----------+-----------+
Info: cfl dt = 0.012410913347780947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35992.400972517105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.167563884383916, dt = 0.012410913347780947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 271.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.4123498337802474e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.013064190743845266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36727.61294004082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.179974797731697, dt = 0.013064190743845266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.425902360936316e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013721870305653685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39340.22922522782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.193038988475542, dt = 0.013721870305653685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-18,-2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.014379859253857407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40070.19204201254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2067608587811955, dt = 0.014379859253857407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-2.4530074152484538e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.015033682527603252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42867.08598499427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.221140718035053, dt = 0.015033682527603252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 284.24 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-2.4530074152484538e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-02 |
+-----------+-----------+
Info: cfl dt = 0.015678516966416856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43639.17169693872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.236174400562656, dt = 0.015678516966416856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-02 |
+-----------+-----------+
Info: cfl dt = 0.01630923754340807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48007.33946844048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2518529175290727, dt = 0.01630923754340807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.016920475846197953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46523.27354522321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.268162155072481, dt = 0.016920475846197953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2468324983583301e-18,-2.4665599424045226e-18,0)
sum a = (-2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-02 |
+-----------+-----------+
Info: cfl dt = 0.01750669056152553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51350.763130117164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2850826309186787, dt = 0.01750669056152553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.439454888092385e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-02 |
+-----------+-----------+
Info: cfl dt = 0.018062249221612002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51325.63853317863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.302589321480204, dt = 0.018062249221612002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 251.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,-2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.01858151993402402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54239.54081789875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.320651570701816, dt = 0.01858151993402402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019058971267017135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53080.11496456732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.33923309063584, dt = 0.019058971267017135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2197274440461925e-18,-2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.01948927792935606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57380.327060480806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.358292061902857, dt = 0.01948927792935606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.6%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.43 us (95.1%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4665599424045226e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019867429401232872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58763.4629763919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.377781339832213, dt = 0.019867429401232872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020188838276430275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60652.33169618888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.397648769233446, dt = 0.020188838276430275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.08 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020449444799371067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57445.092135384366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.417837607509876, dt = 0.020449444799371067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02064581395398623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60301.50035200244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4382870523092475, dt = 0.02064581395398623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.179069862577986e-18,-2.439454888092385e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020775221506968596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59307.50018899455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4589328662632335, dt = 0.020775221506968596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 288.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1858461261560205e-18,-2.439454888092385e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020835725638461484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61141.20649802284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4797080877702022, dt = 0.020835725638461484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1849990932087662e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020826221208902325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62693.84784734993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.500543813408664, dt = 0.020826221208902325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 280.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.179069862577986e-18,-2.4665599424045226e-18,0)
sum a = (0,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020746474298611497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59320.20855566758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5213700346175663, dt = 0.020746474298611497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1858461261560205e-18,-2.4665599424045226e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02059713539048025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62787.50549589239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5421165089161777, dt = 0.02059713539048025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.179069862577986e-18,-2.4936649967166602e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020379730407467957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59556.16407348924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.562713644306658, dt = 0.020379730407467957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4936649967166602e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020096629717841635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62317.405638339405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.583093374714126, dt = 0.020096629717841635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 290.04 us (96.9%)
LB move op cnt : 0
LB apply : 2.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.520770051028798e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.01975099612865095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54957.16631754092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6031900044319674, dt = 0.01975099612865095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 230.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,-2.4936649967166602e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.01934671374683352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60087.55444422104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.622941000560618, dt = 0.01934671374683352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-2.4936649967166602e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-02 |
+-----------+-----------+
Info: cfl dt = 0.01888830034569397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58563.6022385091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.642287714307452, dt = 0.01888830034569397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,-2.4936649967166602e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-02 |
+-----------+-----------+
Info: cfl dt = 0.018380806487842728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55557.04721801533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.661176014653146, dt = 0.018380806487842728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,-2.520770051028798e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-02 |
+-----------+-----------+
Info: cfl dt = 0.01782970509060335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54776.82977215717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.679556821140989, dt = 0.01782970509060335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,-2.4936649967166602e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.017240775356527453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52789.04455921394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6973865262315924, dt = 0.017240775356527453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016619985024797657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52559.37796312678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.71462730158812, dt = 0.016619985024797657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4801124695605914e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.015973374738153637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51018.36967312943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7312472866129176, dt = 0.015973374738153637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4530074152484538e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015306947986531927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47730.277037544074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7472206613510712, dt = 0.015306947986531927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4665599424045226e-18,0)
sum a = (2.168404344971009e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014626569614971144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45042.257197739535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.762527609337603, dt = 0.014626569614971144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4530074152484538e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-02 |
+-----------+-----------+
Info: cfl dt = 0.013937875308343266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44009.279498637334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.777154178952574, dt = 0.013937875308343266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-2.4530074152484538e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-02 |
+-----------+-----------+
Info: cfl dt = 0.013246193831040268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41375.800990877986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7910920542609174, dt = 0.013246193831040268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-2.4530074152484538e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012556483147301322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40551.33155582849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8043382480919576, dt = 0.012556483147301322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-2.4530074152484538e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011873280915256188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37611.5276892625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.816894731239259, dt = 0.011873280915256188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.439454888092385e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011200669266856962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35426.29707607627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.828768012154515, dt = 0.011200669266856962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.425902360936316e-18,0)
sum a = (-4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010542253281033882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33093.49861641417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.839968681421372, dt = 0.010542253281033882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.425902360936316e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.009901152144793016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.397e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27167.818922583523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.850510934702406, dt = 0.009901152144793016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 287.89 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.425902360936316e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.009280001684639777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.523e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23407.363347346032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.860412086847199, dt = 0.009280001684639777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.422514229147299e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.008680966739381436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27670.110574988892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.869692088531839, dt = 0.008680966739381436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4191260973582818e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.008105761729624702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26507.578061563516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8783730552712203, dt = 0.008105761729624702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4182790644110275e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.007555677749068203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24053.538143134636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.886478817000845, dt = 0.007555677749068203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (60.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.4123498337802474e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.007031614544812712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23062.06724064753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8940344947499135, dt = 0.007031614544812712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4191260973582818e-18,0)
sum a = (-8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.006534115853552773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21129.00218797536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9010661092947263, dt = 0.006534115853552773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4123498337802474e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.006063406702507006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19793.80312134957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.907600225148279, dt = 0.006063406702507006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4123498337802474e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.005619431453815055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17993.669260300998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.913663631850786, dt = 0.005619431453815055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4123498337802474e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.005201891555852391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16432.661052419087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.919283063304601, dt = 0.005201891555852391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.425902360936316e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.004810282153395357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15414.6359460656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9244849548604535, dt = 0.004810282153395357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 246.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-2.439454888092385e-18,0)
sum a = (-8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.004443926891881769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14499.064558935863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9292952370138488, dt = 0.004443926891881769 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 268.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.439454888092385e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.004102010422427975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13018.384759859618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9337391639057304, dt = 0.004102010422427975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.4665599424045226e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037836082691283662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12392.593533112718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9378411743281583, dt = 0.0037836082691283662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 324.29 us (97.2%)
LB move op cnt : 0
LB apply : 1.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (72.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,-2.439454888092385e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034877138556717673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10530.759465291312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9416247825972865, dt = 0.0034877138556717673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 276.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.439454888092385e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.003213262603212072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10243.821351871728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9451124964529583, dt = 0.003213262603212072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.86 us (6.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 300.74 us (90.4%)
LB move op cnt : 0
LB apply : 4.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.439454888092385e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.002959153105725003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.319e-03 | 2.0% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8771.98285570685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9483257590561704, dt = 0.002959153105725003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 251.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-2.439454888092385e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.002724265463702651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8732.786159794414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9512849121618956, dt = 0.002724265463702651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.3852447794681098e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025074769135703494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7781.540533103508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9540091776255983, dt = 0.0025074769135703494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.4936649967166602e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023076749306520272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7536.247193899864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.956516654539169, dt = 0.0023076749306520272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.439454888092385e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021237680100596313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6734.481751195122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9588243294698207, dt = 0.0021237680100596313 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.439454888092385e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019546943447831724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6170.2714446202945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9609480974798803, dt = 0.0019546943447831724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 271.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.4936649967166602e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017994286256793953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5624.255409911859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9629027918246633, dt = 0.0017994286256793953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 283.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.3852447794681098e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016569871860117162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5130.145972424489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.964702220450343, dt = 0.0016569871860117162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (1.2%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.3852447794681098e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001526431705487578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4713.57670221092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9663592076363545, dt = 0.001526431705487578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.3852447794681098e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014068716769438069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4381.838518234779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.967885639341842, dt = 0.0014068716769438069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012974658242783192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4244.696609596532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9692925110187858, dt = 0.0012974658242783192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-2.2768245622195593e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011974226440163431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898.9932697830072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.970589976843064, dt = 0.0011974226440163431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-2.2768245622195593e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011060002259132378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3588.7509561120396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9717873994870803, dt = 0.0011060002259132378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,-2.168404344971009e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010225054909208365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3380.0442058414374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9728933997129934, dt = 0.0010225054909208365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-2.0599841277224584e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009462929681966195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992.039776045287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9739159052039144, dt = 0.0009462929681966195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-1.951563910473908e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008767632169867053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2815.924427299984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.974862198172111, dt = 0.0008767632169867053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 230.97 us (88.0%)
LB move op cnt : 0
LB apply : 1.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (3.469446951953614e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008133609844161776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2609.5178885671216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.975738961389098, dt = 0.0008133609844161776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.951563910473908e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007555731766278355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2407.8498696600172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.976552322373514, dt = 0.0007555731766278355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.951563910473908e-18,0)
sum a = (8.673617379884035e-19,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007029267084005252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2174.399944250491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9773078955501417, dt = 0.0007029267084005252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-1.734723475976807e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006549862853690724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2068.4150063526045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9780108222585424, dt = 0.0006549862853690724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-1.951563910473908e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006113521632341475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.463e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1611.6083527409266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9786658085439113, dt = 0.0006113521632341475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005716579198355521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.2200711327955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9792771607071455, dt = 0.0005716579198355521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005355682685889218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1700.9381845868402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.979848818626981, dt = 0.0005355682685889218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (0.5%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 589.03 us (98.4%)
LB move op cnt : 0
LB apply : 1.69 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.5178830414797062e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005027769354633897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.555e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1240.1360817133273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9803843868955697, dt = 0.0005027769354633897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047300461630973807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1484.5532124376266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9808871638310332, dt = 0.00047300461630973807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (0.6%)
patch tree reduce : 490.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 500.86 us (98.2%)
LB move op cnt : 0
LB apply : 1.65 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-1.5178830414797062e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044599702683651273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.626e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.4443227478948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.981360168447343, dt = 0.00044599702683651273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 239.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.5178830414797062e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.00042152305377907644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1329.451569925384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.98180616547418, dt = 0.00042152305377907644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 240.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003993730127213704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.0043096795946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.982227688527959, dt = 0.0003993730127213704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037935701552596374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1180.9111938838996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9826270615406805, dt = 0.00037935701552596374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 340.00 ns (0.1%)
LB compute : 235.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.000361303448325381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112.4612612919007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9830064185562066, dt = 0.000361303448325381 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034505755945469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.5749940057942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.983367722004532, dt = 0.00034505755945469 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,-1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033048015549730375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.2849575518424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.983712779563987, dt = 0.00033048015549730375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,-1.3010426069826053e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003174464027156369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1013.5743973950251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9840432597194844, dt = 0.0003174464027156369 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003058447304953671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 928.2194263531246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9843607061222, dt = 0.0003058447304953671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002955758330027442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.5389072617095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9846665508526953, dt = 0.0002955758330027442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028655176500085315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 895.7891527795584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.984962126685698, dt = 0.00028655176500085315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,-8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027869512766051446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 860.5940596893372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9852486784506986, dt = 0.00027869512766051446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027193834020699815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.1439785177663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.985527373578359, dt = 0.00027193834020699815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002662229933416154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.5230931843982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.985799311918566, dt = 0.0002662229933416154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 302.43 us (97.1%)
LB move op cnt : 0
LB apply : 1.69 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-8.673617379884035e-19,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026149928054796035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.0270450502874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9860655349119076, dt = 0.00026149928054796035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,-8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025772550361977727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.2686834570853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9863270341924557, dt = 0.00025772550361977727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1384122811097797e-18,-4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025486764901762814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.809711657072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9865847596960755, dt = 0.00025486764901762814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002528990319635719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.1876450877528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.986839627345093, dt = 0.0002528990319635719 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.06 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1655173354219173e-18,-8.673617379884035e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002518000055078369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.7063891429772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9870925263770567, dt = 0.0002518000055078369 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.179069862577986e-18,-4.336808689942018e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515577321415048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.615844891361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9873443263825643, dt = 0.0002515577321415048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.179069862577986e-18,-4.336808689942018e-19,0)
sum a = (-1.1102230246251565e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025216601587842153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 751.9898459907373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9875958841147057, dt = 0.00025216601587842153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,-4.336808689942018e-19,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002536251930829409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.8449173475965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.987848050130584, dt = 0.0002536251930829409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 265.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025594208067349333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.1622936299666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.988101675323667, dt = 0.00025594208067349333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025912998068186095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.4211687152541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9883576174043407, dt = 0.00025912998068186095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 306.20 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026320874049131173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.459158541239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9886167473850227, dt = 0.00026320874049131173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.4%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,4.336808689942018e-19,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026820486841053627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.8240380696253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.988879956125514, dt = 0.00026820486841053627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.8%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 315.80 us (97.2%)
LB move op cnt : 0
LB apply : 1.77 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,8.673617379884035e-19,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027415170456184467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.331e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.63689074079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9891481609939246, dt = 0.00027415170456184467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1926223897340549e-18,1.3010426069826053e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028108964736841505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.6118803348791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9894223126984865, dt = 0.00028108964736841505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,1.3010426069826053e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028906643621337747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.3042915766288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.989703402345855, dt = 0.00028906643621337747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 284.90 us (97.1%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.75781955236954e-19,1.3010426069826053e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029813749110958797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.6712550828095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9899924687820683, dt = 0.00029813749110958797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 238.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.734723475976807e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003083663104589256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.9695918997213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9902906062731778, dt = 0.0003083663104589256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 285.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,1.734723475976807e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031982492818892716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 914.2950119851523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9905989725836366, dt = 0.00031982492818892716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-18,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033259443172672015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 944.2023121674727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9909187975118257, dt = 0.00033259443172672015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.168404344971009e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003467655423985988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.6616394475469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9912513919435524, dt = 0.0003467655423985988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.000362439259919983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.9780312019416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.991598157485951, dt = 0.000362439259919983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 265.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.80 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003797275726551923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.5980713342972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.991960596745871, dt = 0.0003797275726551923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039875423526803566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.459e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.8555005107005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9923403243185263, dt = 0.00039875423526803566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 254.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.951563910473908e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041965561523930135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1190.9194472175907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9927390785537944, dt = 0.00041965561523930135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,1.734723475976807e-18,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044258160948033203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.1415170902042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9931587341690338, dt = 0.00044258160948033203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.734723475976807e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046769663190506785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1357.467715290375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.993601315778514, dt = 0.00046769663190506785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.951563910473908e-18,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004951806723156924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1415.5050546318705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.994069012410419, dt = 0.0004951806723156924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 249.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.951563910473908e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005252304262859435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1485.9717104333438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9945641930827347, dt = 0.0005252304262859435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005580604948647791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1584.455961082552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.995089423509021, dt = 0.0005580604948647791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.168404344971009e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005939046518417592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1690.3070135031576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.995647484003886, dt = 0.0005939046518417592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.951563910473908e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006330171749811563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1703.7707051896155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9962413886557275, dt = 0.0006330171749811563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 271.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.951563910473908e-18,0)
sum a = (4.336808689942018e-19,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006756742360080886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1832.2875474338484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9968744058307086, dt = 0.0006756742360080886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 284.31 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (8.673617379884035e-19,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.000722175342177123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1928.9546534432127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9975500800667167, dt = 0.000722175342177123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007728448199290651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.442e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1803.304445182675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.998272255408894, dt = 0.0007728448199290651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.000828033328399544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2362.8537193837706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.999045100228823, dt = 0.000828033328399544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,1.951563910473908e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008881193873360813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2456.689472410215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9998731335572226, dt = 0.0008881193873360813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 272.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.0599841277224584e-18,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.000953510900260022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2510.5237284446885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.000761252944558, dt = 0.000953510900260022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 282.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010246466494278816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2667.7333858719453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.001714763844818, dt = 0.0010246466494278816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.001101997734257208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3022.0067620773457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.002739410494246, dt = 0.001101997734257208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.168404344971009e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001186068919343505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3252.993801264521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.003841408228503, dt = 0.001186068919343505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.168404344971009e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012773998519732507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3503.439244047935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.005027477147847, dt = 0.0012773998519732507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.001376566102111113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3779.8331179317393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0063048769998195, dt = 0.001376566102111113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.2768245622195593e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014841799702010085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4124.621584599628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.007681443101931, dt = 0.0014841799702010085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.3852447794681098e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016008909997864544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4355.186964653145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.009165623072132, dt = 0.0016008909997864544 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.2768245622195593e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017273861229703473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4731.23917324203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.010766514071919, dt = 0.0017273861229703473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.3852447794681098e-18,0)
sum a = (1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001864389357179459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5253.057129975275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.012493900194889, dt = 0.001864389357179459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.3852447794681098e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002012660961702015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5551.205583333031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.014358289552069, dt = 0.002012660961702015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 235.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.439454888092385e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002172995952211718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6027.946354425925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.016370950513771, dt = 0.002172995952211718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.439454888092385e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023462218612300997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6298.27529601191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.018543946465983, dt = 0.0023462218612300997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 271.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.439454888092385e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025331956225426557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6790.386421498894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.020890168327213, dt = 0.0025331956225426557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 259.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.439454888092385e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027347994483963274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.349e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6758.5826371715275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.023423363949756, dt = 0.0027347994483963274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-18,2.4936649967166602e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.002951935560394588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7897.767521179198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0261581633981525, dt = 0.002951935560394588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.8%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 305.35 us (97.2%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.5478751053409354e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031855196290146563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8367.796773361331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.029110098958547, dt = 0.0031855196290146563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.520770051028798e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034364727733659562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9443.309991965325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.032295618587562, dt = 0.0034364727733659562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.520770051028798e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037057119730849624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10132.662467242219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.035732091360928, dt = 0.0037057119730849624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4936649967166602e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.003994138749141665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11202.01921989363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.039437803334013, dt = 0.003994138749141665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.4936649967166602e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.004302625980957731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11833.2969832741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.043431942083155, dt = 0.004302625980957731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.520770051028798e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.004632002744846311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13048.255424144616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.047734568064112, dt = 0.004632002744846311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4936649967166602e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004983037084684303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13831.87444336984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0523665708089585, dt = 0.004983037084684303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.4936649967166602e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.005356416661244128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14739.612232192676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.057349607893642, dt = 0.005356416661244128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4801124695605914e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.005752727273017171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15858.542811575911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0627060245548865, dt = 0.005752727273017171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.45 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.4665599424045226e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.006172429299789378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16784.48178196014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.068458751827904, dt = 0.006172429299789378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.473336205982557e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.006615832191564438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18970.525367950755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.074631181127693, dt = 0.006615832191564438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4665599424045226e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0070830672101674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19506.570488972302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.081247013319258, dt = 0.0070830672101674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4699480741935398e-18,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0075740587289550975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21477.037200133618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.088330080529426, dt = 0.0075740587289550975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 293.73 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.589415207398531e-19,2.4661364259308954e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.008088494506745661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21958.372498160526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.095904139258381, dt = 0.008088494506745661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-19,2.464865876510014e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.008625795473694957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24099.199046813963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1039926337651265, dt = 0.008625795473694957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,2.459783678826488e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.009185085696652403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24927.86333349269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.112618429238822, dt = 0.009185085696652403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-19,2.4665599424045226e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.009765163325541008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27458.87643367501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.121803514935474, dt = 0.009765163325541008 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 441.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 290.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,2.4665599424045226e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010364473455187958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27701.01930540397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.131568678261015, dt = 0.010364473455187958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,2.4665599424045226e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.010981083962028041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29848.298589886745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.141933151716203, dt = 0.010981083962028041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,2.4530074152484538e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-02 |
+-----------+-----------+
Info: cfl dt = 0.011612665484082928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32503.773778125716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.152914235678231, dt = 0.011612665484082928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7947076036992655e-19,2.4530074152484538e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.012256476796238293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33999.34591956615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.164526901162314, dt = 0.012256476796238293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,2.4530074152484538e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.012909356880845541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36508.123494800835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.176783377958552, dt = 0.012909356880845541 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,2.439454888092385e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013567724995383262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38287.76138659083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.189692734839397, dt = 0.013567724995383262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2526065174565133e-19,2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.014227589983875336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40937.50810546347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.20326045983478, dt = 0.014227589983875336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.13 us (97.0%)
LB move op cnt : 0
LB apply : 1.45 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-02 |
+-----------+-----------+
Info: cfl dt = 0.014884569957584888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41332.339102305916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.217488049818655, dt = 0.014884569957584888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.710505431213761e-19,2.425902360936316e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-02 |
+-----------+-----------+
Info: cfl dt = 0.01553392327583035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45371.02579050251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.23237261977624, dt = 0.01553392327583035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.439454888092385e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.016170591485343586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47151.15941999974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.24790654305207, dt = 0.016170591485343586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.439454888092385e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.016789254526329903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49189.648807978716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2640771345374135, dt = 0.016789254526329903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.017384398090364826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49387.867138407746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2808663890637435, dt = 0.017384398090364826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (60.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.4123498337802474e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.017950392530450315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52744.859735173784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2982507871541085, dt = 0.017950392530450315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.4123498337802474e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.01848158219422744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52474.466240801645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.316201179684559, dt = 0.01848158219422744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.4123498337802474e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.018972383500972453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56117.78589484786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.334682761878787, dt = 0.018972383500972453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.439454888092385e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-02 |
+-----------+-----------+
Info: cfl dt = 0.019417389540556145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56059.9932067856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.353655145379759, dt = 0.019417389540556145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.3%)
patch tree reduce : 440.00 ns (0.0%)
gen split merge : 381.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.0%)
LB compute : 1.04 ms (99.1%)
LB move op cnt : 0
LB apply : 1.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.4123498337802474e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.01981147847112938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.011e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34763.87175841557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.373072534920315, dt = 0.01981147847112938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 296.36 us (97.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,2.3852447794681098e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.02014992256714694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52907.8547242424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.392884013391444, dt = 0.02014992256714694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 366.04 us (97.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,2.3852447794681098e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020428494455261965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55097.462454914305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.413033935958591, dt = 0.020428494455261965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.3852447794681098e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020643566904024475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61162.75011389068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4334624304138535, dt = 0.020643566904024475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1006417091906648e-19,2.3852447794681098e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020792202529146733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61549.708019433136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.454105997317878, dt = 0.020792202529146733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,2.358139725155972e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020872229954951485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60990.84476859377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.474898199847025, dt = 0.020872229954951485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9651164376299768e-19,2.358139725155972e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.02088230333840414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64461.912098679146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4957704298019765, dt = 0.02088230333840414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9651164376299768e-19,2.3310346708438345e-18,0)
sum a = (0,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020821942705597226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63158.1223841434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.516652733140381, dt = 0.020821942705597226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.303929616531697e-18,0)
sum a = (0,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020691553248971314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62186.81659964792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.537474675845978, dt = 0.020691553248971314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.3310346708438345e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020492422551652203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61341.07164756872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.558166229094949, dt = 0.020492422551652203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7618285302889447e-19,2.303929616531697e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020226695597502852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62023.90500439534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5786586516466015, dt = 0.020226695597502852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.56 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0328790734103208e-19,2.2768245622195593e-18,0)
sum a = (4.336808689942018e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019897328339355414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58653.55750282148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.598885347244105, dt = 0.019897328339355414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.303929616531697e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.01950802147819709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60837.659543367074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.61878267558346, dt = 0.01950802147819709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.303929616531697e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019063136899468196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57435.37686609445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.638290697061657, dt = 0.019063136899468196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.01856759987202917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56989.851235993214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.657353833961125, dt = 0.01856759987202917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.31 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8973538018496328e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.01802679060387098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54578.03723212873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.675921433833154, dt = 0.01802679060387098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.0174464290423942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54467.590993920545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.693948224437025, dt = 0.0174464290423942 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.01683245689672991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50071.66652923966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.711394653479419, dt = 0.01683245689672991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (1.2%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.01619092075044157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49135.657826296956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7282271103761495, dt = 0.01619092075044157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2632720350634905e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-02 |
+-----------+-----------+
Info: cfl dt = 0.015527859843746319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49012.07380620768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.744418031126591, dt = 0.015527859843746319 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.2632720350634905e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-02 |
+-----------+-----------+
Info: cfl dt = 0.014849201664821983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45824.384048515174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.759945890970337, dt = 0.014849201664821983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.014160667937262702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44965.6733423666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.774795092635158, dt = 0.014160667937262702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.2497195079074217e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013467692966860035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43297.36536386529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.788955760572421, dt = 0.013467692966860035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.2497195079074217e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-02 |
+-----------+-----------+
Info: cfl dt = 0.012775355657636439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.491e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32511.986326087623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.802423453539281, dt = 0.012775355657636439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.88 us (8.2%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.55 us (89.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012088325863671508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37275.30712773442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.815198809196917, dt = 0.012088325863671508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-19,2.2497195079074217e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011410825143561808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36703.05918830966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.827287135060589, dt = 0.011410825143561808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-20,2.2497195079074217e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010746601454967007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33144.02562902814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.838697960204151, dt = 0.010746601454967007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,2.2429432443293873e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.010098916886125247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32125.171046217765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8494445616591175, dt = 0.010098916886125247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.236166980751353e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.009470547179755519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30457.59212612847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.859543478545243, dt = 0.009470547179755519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.23955511254037e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.00886379156506453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28837.69444325359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.869014025724998, dt = 0.00886379156506453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.2378610466458615e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.008280491271778696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26251.785967219297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.877877817290063, dt = 0.008280491271778696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.2402962663692176e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.007722055047268996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23996.728963981528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.886158308561842, dt = 0.007722055047268996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.23955511254037e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.007189490021416732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23149.285454496414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.893880363609111, dt = 0.007189490021416732 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2429432443293873e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.006683436349335416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21859.492778102667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.901069853630528, dt = 0.006683436349335416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.256495771485456e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.006204204194187277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20070.345943373046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.907753289979863, dt = 0.006204204194187277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.005751811776315655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18323.27283510155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.91395749417405, dt = 0.005751811776315655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.005326023397230912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17053.633993358882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.919709305950366, dt = 0.005326023397230912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.2497195079074217e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.004926386535941525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16079.370224104594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.925035329347597, dt = 0.004926386535941525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,2.2497195079074217e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.00455226730114806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14983.383119746724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.929961715883538, dt = 0.00455226730114806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.004202883698564436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13403.84893430561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.934513983184686, dt = 0.004202883698564436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038773363328741994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12953.483624343004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.93871686688325, dt = 0.0038773363328741994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035746363052703684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11775.60266005981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9425942032161245, dt = 0.0035746363052703684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2497195079074217e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.003293730188511612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10795.890515825371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.946168839521395, dt = 0.003293730188511612 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2768245622195593e-18,0)
sum a = (-1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030335220616389174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9470.78967942636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.949462569709906, dt = 0.0030335220616389174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2768245622195593e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027928926666411845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9287.010663155144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.952496091771545, dt = 0.0027928926666411845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 226.95 us (87.9%)
LB move op cnt : 0
LB apply : 23.95 us (9.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.2768245622195593e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025707158108735514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8477.954851231474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.955288984438186, dt = 0.0025707158108735514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 253.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.2768245622195593e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023658721838290685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7599.372741142104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.95785970024906, dt = 0.0023658721838290685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2768245622195593e-18,0)
sum a = (-1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021772607871096937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6813.450252938004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.960225572432889, dt = 0.0021772607871096937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.2768245622195593e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020038081943879855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6386.463701846645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.962402833219999, dt = 0.0020038081943879855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 285.20 us (97.1%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.2768245622195593e-18,0)
sum a = (3.469446951953614e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.001844475866001931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5751.018466979141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.964406641414387, dt = 0.001844475866001931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 245.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016982657426502375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5517.1474155072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.966251117280389, dt = 0.0016982657426502375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.8%)
patch tree reduce : 470.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 357.78 us (97.4%)
LB move op cnt : 0
LB apply : 2.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.2768245622195593e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015642243363259065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.380e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4429.234599785162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.967949383023039, dt = 0.0015642243363259065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (53.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.4936649967166602e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014414455257847833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4654.382951893475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.969513607359365, dt = 0.0014414455257847833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.4936649967166602e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.001329072249895345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4324.934860009984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.97095505288515, dt = 0.001329072249895345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.6020852139652106e-18,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012262972763216193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3549.108839372495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.972284125135045, dt = 0.0012262972763216193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.6020852139652106e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011323632060952465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3658.871702631957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.973510422411366, dt = 0.0011323632060952465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 271.24 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.4936649967166602e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010465618574758272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3264.3005905141167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.974642785617462, dt = 0.0010465618574758272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.6020852139652106e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009682331556433464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3063.9323971841022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.975689347474938, dt = 0.0009682331556433464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.6020852139652106e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008967636386230672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855.2255462769253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.976657580630581, dt = 0.0008967636386230672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,2.6020852139652106e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.32e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008315846746949235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2688.106829070581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.977554344269205, dt = 0.0008315846746949235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.6020852139652106e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007721704725654999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2451.4993607799424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9783859289439, dt = 0.0007721704725654999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,2.8189256484623115e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007180359528781507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2366.46956221278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.979158099416465, dt = 0.0007180359528781507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.14 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.0357660829594124e-18,0)
sum a = (-1.0842021724855044e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006687345382387012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2123.8326245711896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.979876135369343, dt = 0.0006687345382387012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.0357660829594124e-18,0)
sum a = (-8.673617379884035e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.000623855908825779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2017.9396151948072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.980544869907582, dt = 0.000623855908825779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,2.8189256484623115e-18,0)
sum a = (-1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005830237617868785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1827.3935334617872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.981168725816407, dt = 0.0005830237617868785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.0357660829594124e-18,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005458936049208569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1732.961959809242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.981751749578194, dt = 0.0005458936049208569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 266.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.0357660829594124e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005121506085270413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1572.1899329473704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.982297643183115, dt = 0.0005121506085270413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.2526065174565133e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048150753366470807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1522.703085637059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.982809793791642, dt = 0.00048150753366470807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 284.86 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.2526065174565133e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045370275031578476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1376.692939847822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.983291301325306, dt = 0.00045370275031578476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.2526065174565133e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.00042849835498068865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.7494318469523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.983745004075622, dt = 0.00042849835498068865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.469446951953614e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004056783939683198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.63617860297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.984173502430603, dt = 0.0004056783939683198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.686287386450715e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003850471959781391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1226.0394197434587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.984579180824571, dt = 0.0003850471959781391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003664278154333442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1121.4857991033264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.98496422802055, dt = 0.0003664278154333442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,4.336808689942018e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003496605863351273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1091.3348905141213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.985330655835983, dt = 0.0003496605863351273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033460178510200345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.6757006740756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.985680316422318, dt = 0.00033460178510200345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.21e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003211223998758742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.8493508262004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.98601491820742, dt = 0.0003211223998758742 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.85 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003091070030654505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 924.7748056946423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.986336040607296, dt = 0.0003091070030654505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.469446951953614e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002984527234122554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 920.0662865270853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9866451476103615, dt = 0.0002984527234122554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002890683135651221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 907.5779510324589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.986943600333774, dt = 0.0002890683135651221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.903127820947816e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002808733090019196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 884.2030066626162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.987232668647339, dt = 0.0002808733090019196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.469446951953614e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002737972741132389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.4974366150386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.987513541956341, dt = 0.0002737972741132389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002677791313374208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.8732328280989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.987787339230454, dt = 0.0002677791313374208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.17 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.469446951953614e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002627665693890195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.7586547435742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.988055118361792, dt = 0.0002627665693890195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002587155268363387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.1312960089006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.98831788493118, dt = 0.0002587155268363387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002555897475437862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.3523993472228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.988576600458017, dt = 0.0002555897475437862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,4.336808689942018e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025336040478967894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.349135990835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.98883219020556, dt = 0.00025336040478967894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,4.336808689942018e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025200579119013394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 737.2670983983485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9890855506103495, dt = 0.00025200579119013394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.009663273127126e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515110718969055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.8491536611368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.98933755640154, dt = 0.0002515110718969055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.825582188149884e-19,3.903127820947816e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.000251868098885003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.1151832208436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.989589067473437, dt = 0.000251868098885003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0028870095490916e-18,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002530752844994019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 736.4492516203633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.989840935572322, dt = 0.0002530752844994019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025513753278473555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 741.6868145511083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.990094010856821, dt = 0.00025513753278473555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025806622747388114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.1078989291796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.990349148389606, dt = 0.00025806622747388114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026187927585761785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.410e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.7074969767158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9906072146170795, dt = 0.00026187927585761785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026660120809513725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.1109151710527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.990869093892937, dt = 0.00026660120809513725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.8%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002722633318513411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.7817759836435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.991135695101032, dt = 0.0002722633318513411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027890394245871935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.5050570608638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.991407958432883, dt = 0.00027890394245871935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002865685890961143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.0437887662835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.991686862375341, dt = 0.0002865685890961143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.000295310397750409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 869.033392366409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.991973430964437, dt = 0.000295310397750409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.903127820947816e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030519045197616754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 907.3120005440475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.992268741362188, dt = 0.00030519045197616754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031627823268784146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 896.709812285259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.992573931814164, dt = 0.00031627823268784146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,4.336808689942018e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003286521184038052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 935.3984784197565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.992890210046852, dt = 0.0003286521184038052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003423999475046268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.4722800465141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.993218862165255, dt = 0.0003423999475046268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035761964416180283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.4892135152909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99356126211276, dt = 0.00035761964416180283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 281.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003744199096284488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.7358221716852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.993918881756922, dt = 0.0003744199096284488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039292098054926087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1155.0792752194543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99429330166655, dt = 0.00039292098054926087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 260.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.686287386450715e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041325545583068696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1143.131531801529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9946862226471, dt = 0.00041325545583068696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (77.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.469446951953614e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004355691933988566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.3058588123085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99509947810293, dt = 0.0004355691933988566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.686287386450715e-18,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.000460022277845212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.286e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1219.7372639348548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.995535047296329, dt = 0.000460022277845212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048679005949826354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1391.9506118846007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.995995069574174, dt = 0.00048679005949826354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 278.26 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005160642648419138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.0238594017785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.996481859633672, dt = 0.0005160642648419138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005480541774008256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1566.0879596108953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.996997923898514, dt = 0.0005480541774008256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.686287386450715e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005829878872026437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1589.0848512578784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.997545978075914, dt = 0.0005829878872026437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.686287386450715e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.21e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006211136056734744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1725.461438925237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.998128965963117, dt = 0.0006211136056734744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.686287386450715e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.000662701041291412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1835.763066356089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99875007956879, dt = 0.000662701041291412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.686287386450715e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007080428294743878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2027.9506644722285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.999412780610082, dt = 0.0007080428294743878 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007574560079711117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152.6602055644153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.000120823439556, dt = 0.0007574560079711117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.18 us (94.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008112835264127193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2200.045204555578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0008782794475275, dt = 0.0008112835264127193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.903127820947816e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008698957756207321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2461.1903015040316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.00168956297394, dt = 0.0008698957756207321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.686287386450715e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.000933692118705769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2612.820534152734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.002559458749561, dt = 0.000933692118705769 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.7947076036992655e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010031024018823571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2789.3078016176482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.003493150868267, dt = 0.0010031024018823571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.7947076036992655e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010785884182212078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3030.2945204465973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.004496253270149, dt = 0.0010785884182212078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.7947076036992655e-18,0)
sum a = (-3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011606452922179786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3263.104632980276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.005574841688371, dt = 0.0011606452922179786 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.686287386450715e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012498027470400793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3387.465120226032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.006735486980589, dt = 0.0012498027470400793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.686287386450715e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013466262095939048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3731.8220298047827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.007985289727629, dt = 0.0013466262095939048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 287.22 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.686287386450715e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014517177011219781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3850.455471844333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.009331915937223, dt = 0.0014517177011219781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.577867169202165e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015657164529010975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4232.934183701849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.010783633638345, dt = 0.0015657164529010975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.577867169202165e-18,0)
sum a = (3.469446951953614e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016892991778033539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4746.3092568309185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.012349350091246, dt = 0.0016892991778033539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.577867169202165e-18,0)
sum a = (1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018231799190709102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5177.765400402093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.014038649269049, dt = 0.0018231799190709102 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.5236570605778894e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019681093877548183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5359.491531107326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.01586182918812, dt = 0.0019681093877548183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 355.03 us (97.4%)
LB move op cnt : 0
LB apply : 2.00 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-19,3.577867169202165e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002124873690043209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5379.38124451815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.017829938575875, dt = 0.002124873690043209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.5236570605778894e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022942923353842628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6502.448367623152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.019954812265918, dt = 0.0022942923353842628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.577867169202165e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.00247721540620025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6983.7810019966355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.022249104601302, dt = 0.00247721540620025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.168404344971009e-19,3.577867169202165e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.002674519760484512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7562.6309873008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0247263200075025, dt = 0.002674519760484512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,3.5236570605778894e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.002887104130168521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7776.807655226252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.027400839767987, dt = 0.002887104130168521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 251.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.577867169202165e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031158829714482473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8594.262816763447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.030287943898156, dt = 0.0031158829714482473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.5236570605778894e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033617789189965904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9141.180125901055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.033403826869604, dt = 0.0033617789189965904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 251.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,3.550762114890027e-18,0)
sum a = (-1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036257136950185237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10052.156264519968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0367656057886006, dt = 0.0036257136950185237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 232.69 us (88.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.577867169202165e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.003908597327412698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11026.709206517644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.040391319483619, dt = 0.003908597327412698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.577867169202165e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.004211315539996159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12002.73508987856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.044299916811031, dt = 0.004211315539996159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.550762114890027e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.004534715193041967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12887.179701115394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.048511232351028, dt = 0.004534715193041967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.550762114890027e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.004879587675566481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 2.4% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13971.287735330834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.05304594754407, dt = 0.004879587675566481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,3.537209587733958e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.005246650183212403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14456.110075890563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.057925535219637, dt = 0.005246650183212403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,3.5236570605778894e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.005636524858507584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15720.862802051717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.063172185402849, dt = 0.005636524858507584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,3.5236570605778894e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.006049715824930853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16821.039835853375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.068808710261357, dt = 0.006049715824930853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,3.5236570605778894e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.006486584213564521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18307.753647223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.074858426086288, dt = 0.006486584213564521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-19,3.5236570605778894e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.006947321361795079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19805.10414420819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.081345010299852, dt = 0.006947321361795079 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.520268928788872e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.007431920457683562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20438.173896437944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0882923316616475, dt = 0.007431920457683562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.520268928788872e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.007940147010746782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22219.437604877927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.095724252119331, dt = 0.007940147010746782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 245.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5236570605778894e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.008471508648608992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24043.181068859096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1036643991300785, dt = 0.008471508648608992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.5236570605778894e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.009025224866913085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25501.315422648724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.112135907778687, dt = 0.009025224866913085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 246.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5236570605778894e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.00960019749343914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26480.870122993285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1211611326456, dt = 0.00960019749343914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5236570605778894e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010194982761652613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28120.589752453503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.130761330139039, dt = 0.010194982761652613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5236570605778894e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.010807766017572261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30778.85507191087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.140956312900692, dt = 0.010807766017572261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.5101045334218206e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011436340199181523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32186.432729852342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.151764078918264, dt = 0.011436340199181523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5101045334218206e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012078089320594246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33700.06050423308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.163200419117445, dt = 0.012078089320594246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5101045334218206e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012729978253788066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35383.06925897597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.17527850843804, dt = 0.012729978253788066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.5101045334218206e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013388550118298015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39275.50985372105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.188008486691828, dt = 0.013388550118298015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.41 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.496552006265752e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.014049932553181493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39476.036887172544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2013970368101266, dt = 0.014049932553181493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.5101045334218206e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-02 |
+-----------+-----------+
Info: cfl dt = 0.014709854045969266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40465.521491273925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.215446969363308, dt = 0.014709854045969266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 278.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.5101045334218206e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-02 |
+-----------+-----------+
Info: cfl dt = 0.015363671322067986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.303e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40645.71618905354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.230156823409277, dt = 0.015363671322067986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 240.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.5101045334218206e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.01600640854980694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46480.8722824732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.245520494731345, dt = 0.01600640854980694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.67 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016632808789503947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46486.78866120422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.261526903281152, dt = 0.016632808789503947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 242.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.496552006265752e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.017237397712918167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50761.54178397876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.278159712070656, dt = 0.017237397712918167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 268.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-02 |
+-----------+-----------+
Info: cfl dt = 0.01781455915133221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50672.56109364978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.295397109783575, dt = 0.01781455915133221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.607859233063394e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-02 |
+-----------+-----------+
Info: cfl dt = 0.018358621511573095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54460.17665119111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3132116689349065, dt = 0.018358621511573095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.496552006265752e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-02 |
+-----------+-----------+
Info: cfl dt = 0.01886395355115973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53299.73954720783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3315702904464795, dt = 0.01886395355115973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.019325067453875522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58032.07159016818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.350434243997639, dt = 0.019325067453875522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.0197367266274866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56241.419986978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3697593114515145, dt = 0.0197367266274866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 255.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020094055190976595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58908.47033356803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.389496038079001, dt = 0.020094055190976595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.014435047745458e-19,3.496552006265752e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02039264576489583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58904.96743431548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.409590093269977, dt = 0.02039264576489583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.496552006265752e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02062866195813776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60912.308867766646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.429982739034873, dt = 0.02062866195813776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 264.45 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.946672411965114e-19,3.496552006265752e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020798931885052663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60133.64145115864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.450611400993011, dt = 0.020798931885052663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.4423418976414766e-18,0)
sum a = (2.168404344971009e-19,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020901029167178797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64167.71771797797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.471410332878063, dt = 0.020901029167178797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 262.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.861969117239684e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020933338181841697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62072.1755637439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.492311362045243, dt = 0.020933338181841697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.861969117239684e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020895100810427957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63908.561807205915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.513244700227085, dt = 0.020895100810427957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.4423418976414766e-18,0)
sum a = (2.168404344971009e-19,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.02078644259370868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59890.98854251843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5341398010375125, dt = 0.02078644259370868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.4423418976414766e-18,0)
sum a = (0,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02060837698858478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64200.27053882691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.554926243631221, dt = 0.02060837698858478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.4423418976414766e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.0203627872973019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60844.52011654273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5755346206198055, dt = 0.0203627872973019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.743384504624082e-19,3.415236843329339e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020052386755676454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62088.083516663166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.595897407917107, dt = 0.020052386755676454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.69 us (97.0%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.607859233063394e-19,3.4423418976414766e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019680658166198323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56469.689540063235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.615949794672783, dt = 0.019680658166198323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.415236843329339e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.01925177529042798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59929.885696763944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.635630452838981, dt = 0.01925177529042798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 21.28 us (7.8%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 242.02 us (89.0%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3881317890172014e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-02 |
+-----------+-----------+
Info: cfl dt = 0.0187705089232393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56484.70248879841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.654882228129409, dt = 0.0187705089232393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3610267347050637e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018242121118593163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56139.319407435585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.673652737052649, dt = 0.018242121118593163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3610267347050637e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017672251394360808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55219.93756437573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.691894858171242, dt = 0.017672251394360808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3745792618611326e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.017066798898208547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52587.63904844709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.709567109565603, dt = 0.017066798898208547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3745792618611326e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.016431804468484267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51286.72935570774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.726633908463811, dt = 0.016431804468484267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.3881317890172014e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.015773336288163305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49813.05405888134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.743065712932296, dt = 0.015773336288163305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.3745792618611326e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015097382432846309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46561.44531785323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.758839049220459, dt = 0.015097382432846309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.40168431617327e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.014409753091042176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45399.251699840795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.773936431653305, dt = 0.014409753091042176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.40168431617327e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013715994627287242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43837.76396847899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.788346184744348, dt = 0.013715994627287242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.40168431617327e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-02 |
+-----------+-----------+
Info: cfl dt = 0.013021317008416957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39990.621956910436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.802062179371635, dt = 0.013021317008416957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-19,3.415236843329339e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.012330535461059998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37231.42050785428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.815083496380052, dt = 0.012330535461059998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.40168431617327e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-02 |
+-----------+-----------+
Info: cfl dt = 0.011648026610027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36465.97967448863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.827414031841112, dt = 0.011648026610027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.87890977618477e-19,3.40168431617327e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.010977698791832946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34953.31333035244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.839062058451139, dt = 0.010977698791832946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3881317890172014e-18,0)
sum a = (-4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010322975766292085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33504.74313461391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.850039757242972, dt = 0.010322975766292085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.3949080525952358e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.009686792674831428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31056.22116052162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.860362733009264, dt = 0.009686792674831428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3881317890172014e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.009071602821857523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29491.91852227142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.870049525684096, dt = 0.009071602821857523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.33 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3881317890172014e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.008479393683222154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27097.0492058986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.879121128505954, dt = 0.008479393683222154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 254.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3855906901754385e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.007911710466021644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25395.263055103333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.887600522189176, dt = 0.007911710466021644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.384743657228184e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0073696855450364265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24106.777551991465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.895512232655198, dt = 0.0073696855450364265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.384743657228184e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.006854072168968704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22171.914011331402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.902881918200235, dt = 0.006854072168968704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3881317890172014e-18,0)
sum a = (-8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.006365280949074276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19945.678949187597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.909735990369203, dt = 0.006365280949074276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.3745792618611326e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.005903417798729181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19202.06225492968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9161012713182775, dt = 0.005903417798729181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 771.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.3610267347050637e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.005468322170884186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17952.856328033704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.922004689117006, dt = 0.005468322170884186 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 288.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3745792618611326e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00505960462888997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15483.967238028585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.927473011287891, dt = 0.00505960462888997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.3610267347050637e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.004676682974540832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15384.660646114928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.932532615916781, dt = 0.004676682974540832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 344.92 us (97.2%)
LB move op cnt : 0
LB apply : 2.13 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.3610267347050637e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.004318816337317465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.374e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12251.64148453268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.937209298891322, dt = 0.004318816337317465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 238.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,3.3610267347050637e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.003985136794818471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12991.764959701182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.941528115228639, dt = 0.003985136794818471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 23.22 us (8.5%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 240.55 us (88.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,3.3610267347050637e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.003674678242369233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11765.785147166906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.945513252023457, dt = 0.003674678242369233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.421010862427522e-19,3.3610267347050637e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.003386402357641344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10610.56744037489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.949187930265826, dt = 0.003386402357641344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.3610267347050637e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031192216131027918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10270.730083750084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.952574332623468, dt = 0.0031192216131027918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.415236843329339e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.002872019375667615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9443.331595767982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9556935542365705, dt = 0.002872019375667615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 235.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.415236843329339e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.002643667200265644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8642.294693309283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.958565573612238, dt = 0.002643667200265644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,3.415236843329339e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002433039474001283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8119.003901983955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9612092408125035, dt = 0.002433039474001283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.27 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.415236843329339e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002239025602228485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7267.782167889963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.963642280286504, dt = 0.002239025602228485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.415236843329339e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020605399494844634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6433.555382284336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9658813058887326, dt = 0.0020605399494844634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.415236843329339e-18,0)
sum a = (-1.734723475976807e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018965297590356998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6153.804651428931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.967941845838217, dt = 0.0018965297590356998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.469446951953614e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.00174598127692124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5867.945479970813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.969838375597253, dt = 0.00174598127692124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.98 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016079243017738584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5097.854781371628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.971584356874175, dt = 0.0016079243017738584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 232.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014814353720810137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4887.452336387761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.973192281175948, dt = 0.0014814353720810137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013656397893965309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4359.9875895834875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.974673716548029, dt = 0.0013656397893965309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012597126605728907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4159.872099292214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9760393563374254, dt = 0.0012597126605728907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 292.86 us (97.0%)
LB move op cnt : 0
LB apply : 1.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.3610267347050637e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011628791253657747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.7648347967406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.977299068997998, dt = 0.0011628791253657747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.001074413918570779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3577.175449450772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.978461948123364, dt = 0.001074413918570779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.3610267347050637e-18,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.000993640398804102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3200.7299550286357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.979536362041935, dt = 0.000993640398804102 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.5%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 514.82 us (98.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.2526065174565133e-18,0)
sum a = (3.469446951953614e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009199291595911296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.474e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2426.910184373769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.980530002440739, dt = 0.0009199291595911296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.2526065174565133e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008526963229004318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2829.0786885527677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.98144993160033, dt = 0.0008526963229004318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.2526065174565133e-18,0)
sum a = (1.734723475976807e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007914016008656424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2492.1649747078363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9823026279232305, dt = 0.0007914016008656424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007355461982950739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2416.8747258823805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.983094029524096, dt = 0.0007355461982950739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (4.336808689942018e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006846706167299531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2224.3481131124518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.983829575722392, dt = 0.0006846706167299531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (-4.336808689942018e-19,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006383524102755311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.529e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1612.0991899835842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.984514246339121, dt = 0.0006383524102755311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (-1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005962039341551213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1952.3951612903024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.985152598749397, dt = 0.0005962039341551213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.469446951953614e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005578701188585619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1818.8239845351463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.985748802683552, dt = 0.0005578701188585619 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 240.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,3.686287386450715e-18,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005230262957896782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1598.9029487160522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.98630667280241, dt = 0.0005230262957896782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,3.903127820947816e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004913760943677121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1553.0206538086532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9868296990982, dt = 0.0004913760943677121 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,3.903127820947816e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046264942550708636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1473.1633611016146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.987321075192567, dt = 0.00046264942550708636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.69 us (95.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,4.336808689942018e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004366005621896523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.8451359603318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.987783724618074, dt = 0.0004366005621896523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 239.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,4.336808689942018e-18,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004130063243582537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.2616161522942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.988220325180264, dt = 0.0004130063243582537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,4.119968255444917e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039166437250954123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1202.8035602130462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.988633331504622, dt = 0.00039166437250954123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003723916120634991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1179.3912641177294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9890249958771316, dt = 0.0003723916120634991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003550227087602364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1123.9739418940044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.989397387489195, dt = 0.0003550227087602364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,4.336808689942018e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003394087139119081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.610669021621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.989752410197955, dt = 0.0003394087139119081 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,4.7704895589362195e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003254157972572746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.5304297773582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.990091818911867, dt = 0.0003254157972572746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,4.7704895589362195e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031292408437373246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.0399672790099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.990417234709124, dt = 0.00031292408437373246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,4.7704895589362195e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030182659504880997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.563922275373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.990730158793498, dt = 0.00030182659504880997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,4.7704895589362195e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002920282786586198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.0727983154368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.991031985388546, dt = 0.0002920282786586198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,4.7704895589362195e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002834451424088368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 898.0043744184347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.991324013667205, dt = 0.0002834451424088368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,4.7704895589362195e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027600346823390253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 852.6817231012438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9916074588096135, dt = 0.00027600346823390253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 244.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,4.336808689942018e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002696391141964206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.7494429901909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.991883462277848, dt = 0.0002696391141964206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026429689635927296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.0069442038007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.992153101392044, dt = 0.00026429689635927296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002599300472995944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.4752749609753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.992417398288404, dt = 0.0002599300472995944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1384122811097797e-18,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002564997476811963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.7163951078227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.992677328335703, dt = 0.0002564997476811963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025397472758779293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.0173927215601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.992933828083384, dt = 0.00025397472758779293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002523309346331347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.0005234034861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.993187802810971, dt = 0.0002523309346331347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0164395367051604e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515512661974733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.4762913721911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9934401337456045, dt = 0.0002515512661974733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.994988777600744e-19,3.469446951953614e-18,0)
sum a = (-5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002516253634857757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 751.958029058246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.993691685011802, dt = 0.0002516253634857757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002525494654561523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 753.0943946353523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.993943310375288, dt = 0.0002525494654561523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0028870095490916e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025432632102243203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.343e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.2180324018865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.994195859840744, dt = 0.00025432632102243203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002569651582888392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.1811906522436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9944501861617665, dt = 0.0002569651582888392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 248.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.469446951953614e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026048170992398805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.676541955043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.994707151320055, dt = 0.00026048170992398805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.903127820947816e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026489829412292026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.7947579515503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9949676330299795, dt = 0.00026489829412292026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002702439509369078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.0229729734738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.995232531324103, dt = 0.0002702439509369078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027655463406840063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.7855083967485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.99550277527504, dt = 0.00027655463406840063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.469446951953614e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028387345852987945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.8766942118052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.995779329909109, dt = 0.00028387345852987945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,3.469446951953614e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029225100484719696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.3128904929489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.996063203367639, dt = 0.00029225100484719696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.589415207398531e-19,3.903127820947816e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003017456807465015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.2119524236257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.996355454372486, dt = 0.0003017456807465015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,3.903127820947816e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003124241414946259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 893.4560792873679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9966572000532326, dt = 0.0003124241414946259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,3.903127820947816e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032436177026070484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.5532465479579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.996969624194727, dt = 0.00032436177026070484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,4.336808689942018e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033764322002552844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.2225646767888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.997293985964988, dt = 0.00033764322002552844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,5.204170427930421e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035236301867741336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 988.2811057320401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.997631629185014, dt = 0.00035236301867741336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 283.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,4.7704895589362195e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036862623899042927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1015.9238227350172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.997983992203691, dt = 0.00036862623899042927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.204170427930421e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038654923517235796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1108.0486455688601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.998352618442682, dt = 0.00038654923517235796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,4.9873299934333204e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040626044758369664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1155.2452583782706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.998739167677854, dt = 0.00040626044758369664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 449.73 us (97.9%)
LB move op cnt : 0
LB apply : 1.96 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,4.9873299934333204e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.00042790127705124746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.444e-03 | 0.5% | 1.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1012.7338827469953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.999145428125438, dt = 0.00042790127705124746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.204170427930421e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045162702991397355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.371e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1123.557555045353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.999573329402489, dt = 0.00045162702991397355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.36 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.204170427930421e-18,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047760793452605914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1359.5534216677186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.000024956432403, dt = 0.00047760793452605914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.204170427930421e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005060302293808506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1443.532408159373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.000502564366929, dt = 0.0005060302293808506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005370973222851292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1516.0856648507863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.00100859459631, dt = 0.0005370973222851292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.000571031019078303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1594.6570362060315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0015456919185945, dt = 0.000571031019078303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.637851296924623e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006080728192246534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1729.068206573476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.002116722937673, dt = 0.0006080728192246534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.000648485274174452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1850.6488070533605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.002724795756898, dt = 0.000648485274174452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006925534026538262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1994.0269967867534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.003373281031073, dt = 0.0006925534026538262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007405861549627376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108.439916678456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.004065834433726, dt = 0.0007405861549627376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007929179158913804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2191.9407640282157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.004806420588689, dt = 0.0007929179158913804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008499100329612175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2311.43699751647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.00559933850458, dt = 0.0008499100329612175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.421010862427522e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009119523533095447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.8184152100835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.006449248537542, dt = 0.0009119523533095447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.637851296924623e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009794647486170492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2667.781934417144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.007361200890851, dt = 0.0009794647486170492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.5294310796760726e-18,0)
sum a = (-3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010528986029782633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2902.065225997041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0083406656394684, dt = 0.0010528986029782633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.421010862427522e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011327382334900549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.3508548312802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.009393564242447, dt = 0.0011327382334900549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.5294310796760726e-18,0)
sum a = (-3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012195022075436246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3451.073645134813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.010526302475937, dt = 0.0012195022075436246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 283.20 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.5294310796760726e-18,0)
sum a = (-3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013137445143201999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3623.013170272768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.011745804683481, dt = 0.0013137445143201999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.421010862427522e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014160555407918645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3978.4887749305117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.013059549197801, dt = 0.0014160555407918645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.421010862427522e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015270627946170922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4279.090180748468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.014475604738593, dt = 0.0015270627946170922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 257.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.421010862427522e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016474313077200753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4573.615239284229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.01600266753321, dt = 0.0016474313077200753 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.8%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 339.22 us (97.3%)
LB move op cnt : 0
LB apply : 2.16 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (72.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.5294310796760726e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017778636451098956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4506.274329495461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.017650098840931, dt = 0.0017778636451098956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.5294310796760726e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019190994337260159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5286.130295493315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0194279624860405, dt = 0.0019190994337260159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.5294310796760726e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020719143159359807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5578.975643040981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.021347061919767, dt = 0.0020719143159359807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.637851296924623e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002237118221965572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6278.570510045126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.023418976235702, dt = 0.002237118221965572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 269.39 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.637851296924623e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024155528452889192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6567.402672158561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.025656094457668, dt = 0.0024155528452889192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.692061405548898e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026080881952083987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7409.7660101655265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.028071647302957, dt = 0.0026080881952083987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.44 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.692061405548898e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028156180919706327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7631.6853651728625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.030679735498165, dt = 0.0028156180919706327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.80 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.7462715141731735e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.003039054462363281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8287.54690552053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.033495353590135, dt = 0.003039054462363281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 280.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.692061405548898e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.003279320288504024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8625.910590691155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.036534408052498, dt = 0.003279320288504024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.692061405548898e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035373410602815227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9871.226900165631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.039813728341002, dt = 0.0035373410602815227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.36 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.692061405548898e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.003814034583580749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10315.796488189142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.043351069401284, dt = 0.003814034583580749 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.692061405548898e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.004110299003090654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 2.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11198.426000961326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.047165103984865, dt = 0.004110299003090654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 250.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,5.692061405548898e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044269989113337556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12338.577773936235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.051275402987955, dt = 0.0044269989113337556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.692061405548898e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.004764949435847994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13325.12510664611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.055702401899289, dt = 0.004764949435847994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.692061405548898e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0051248982255172595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14377.615447134653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.060467351335137, dt = 0.0051248982255172595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.692061405548898e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0055075052962119215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15810.104967352669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0655922495606545, dt = 0.0055075052962119215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.692061405548898e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.005913320746410623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16081.272571397565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071099754856866, dt = 0.005913320746410623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,5.685285141970864e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.006342760416401238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17808.897513356485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0770130756032765, dt = 0.006342760416401238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.6785088783928295e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.006796079640778948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18880.05706784028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0833558360196776, dt = 0.006796079640778948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.675120746603812e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.007273345333611135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20728.567452291045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.090151915660456, dt = 0.007273345333611135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.82 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.671732614814795e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.007774406748558598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21266.6943364444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.097425260994068, dt = 0.007774406748558598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.672156131288422e-18,0)
sum a = (4.336808689942018e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.008298865371385728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23677.975513811474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.105199667742626, dt = 0.008298865371385728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.67 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.671732614814795e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.00884604452765028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24217.771965951564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.113498533114012, dt = 0.00884604452765028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 228.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.671732614814795e-18,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.009414959420785327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27178.365274261527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1223445776416625, dt = 0.009414959420785327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 269.85 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.664956351236761e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.00e-02 |
+-----------+-----------+
Info: cfl dt = 0.010004288450830158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27746.959081636025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.131759537062448, dt = 0.010004288450830158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.664956351236761e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010612346795897686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30206.691623742823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.141763825513277, dt = 0.010612346795897686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 293.46 us (97.1%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011237063359824655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.286e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29703.23429409127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.152376172309175, dt = 0.011237063359824655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.651403824080692e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011875962291734123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 2.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34239.91137766406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.163613235669, dt = 0.011875962291734123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.651403824080692e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-02 |
+-----------+-----------+
Info: cfl dt = 0.012526150356704185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34986.61144296241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.175489197960734, dt = 0.012526150356704185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 252.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.651403824080692e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-02 |
+-----------+-----------+
Info: cfl dt = 0.013184311470866624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37276.757843300766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.188015348317438, dt = 0.013184311470866624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 267.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.651403824080692e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-02 |
+-----------+-----------+
Info: cfl dt = 0.013846709698305579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38118.77888822842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.201199659788305, dt = 0.013846709698305579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.637851296924623e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-02 |
+-----------+-----------+
Info: cfl dt = 0.014509201930827881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41799.28465980754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.21504636948661, dt = 0.014509201930827881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 276.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.651403824080692e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-02 |
+-----------+-----------+
Info: cfl dt = 0.015167261326148106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42258.03360293933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.229555571417438, dt = 0.015167261326148106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.637851296924623e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.015816012358780225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45512.289731990786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.244722832743586, dt = 0.015816012358780225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.637851296924623e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.01645027803793977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46612.3170747873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.260538845102366, dt = 0.01645027803793977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.651403824080692e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.01706463946956322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48803.86479908358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.276989123140306, dt = 0.01706463946956322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017653507492135498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49469.01626006173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.294053762609869, dt = 0.017653507492135498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2739375526704677e-18,5.664956351236761e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.01821120561149289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52834.1607752191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.311707270102005, dt = 0.01821120561149289 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018732062917606748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54184.69662295746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.329918475713498, dt = 0.018732062917606748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,5.664956351236761e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019210515112096736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57200.777406013345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.348650538631105, dt = 0.019210515112096736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.01964121123956463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56754.732022157885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.367861053743202, dt = 0.01964121123956463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-02 |
+-----------+-----------+
Info: cfl dt = 0.020019123233043393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59800.60965934822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.387502264982767, dt = 0.020019123233043393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 290.98 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3145951341386741e-18,5.664956351236761e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.020339654989526588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57711.17016856882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.407521388215811, dt = 0.020339654989526588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.664956351236761e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020598747419898502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59718.008160796795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.427861043205337, dt = 0.020598747419898502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.70 us (8.8%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.77 us (89.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3145951341386741e-18,5.719166459861036e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.02079297579840707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60874.650775825154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.448459790625235, dt = 0.02079297579840707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3145951341386741e-18,5.719166459861036e-18,0)
sum a = (2.168404344971009e-19,-3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.02091963579238813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63491.833415268506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.469252766423642, dt = 0.02091963579238813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3145951341386741e-18,5.719166459861036e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.020976814795277667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62045.94773275854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.49017240221603, dt = 0.020976814795277667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3205243647694542e-18,5.719166459861036e-18,0)
sum a = (2.168404344971009e-19,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.0209634456146968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63200.41549401828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.511149217011307, dt = 0.0209634456146968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3213713977167085e-18,5.7462715141731735e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020879340168737253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63051.74932235562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.532112662626004, dt = 0.020879340168737253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,5.719166459861036e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020725201590297112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63441.29301122218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.552992002794742, dt = 0.020725201590297112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,5.7462715141731735e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020502613992199964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61399.818069582165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.573717204385039, dt = 0.020502613992199964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3417001884508117e-18,5.7462715141731735e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020214010056321105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61211.730231604495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.594219818377239, dt = 0.020214010056321105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,5.7462715141731735e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.01986261752385545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61360.04496175748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.61443382843356, dt = 0.01986261752385545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.7462715141731735e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.019452386525764448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.514e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47217.622450032104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.634296445957416, dt = 0.019452386525764448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,5.7462715141731735e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.018987900450286907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58230.07244418391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.65374883248318, dt = 0.018987900450286907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 278.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.7462715141731735e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.018474273653865673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55567.56624885815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.672736732933467, dt = 0.018474273653865673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (83.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3823577699190182e-18,5.773376568485311e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017917039749910137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.7% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55757.785860151875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.691211006587333, dt = 0.017917039749910137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.14 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,5.773376568485311e-18,0)
sum a = (-2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017322034437225527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52688.60953135601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.709128046337243, dt = 0.017322034437225527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.800481622797449e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-02 |
+-----------+-----------+
Info: cfl dt = 0.016695276852264566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52759.25071407821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.726450080774469, dt = 0.016695276852264566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.800481622797449e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.01604285325663532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47539.909914505544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.743145357626733, dt = 0.01604285325663532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.800481622797449e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-02 |
+-----------+-----------+
Info: cfl dt = 0.015370806526350353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47504.89961282229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7591882108833685, dt = 0.015370806526350353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.78692909564138e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-02 |
+-----------+-----------+
Info: cfl dt = 0.014685034424977747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45584.06231015774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.774559017409719, dt = 0.014685034424977747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.800481622797449e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.013991199058604683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44342.96300980523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.789244051834697, dt = 0.013991199058604683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.800481622797449e-18,0)
sum a = (-2.168404344971009e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-02 |
+-----------+-----------+
Info: cfl dt = 0.013294649268692118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41319.06869512601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.803235250893302, dt = 0.013294649268692118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 251.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.8140341499535175e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012600357061148005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39918.47728893128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.816529900161994, dt = 0.012600357061148005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 285.70 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,5.800481622797449e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011912868534174946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36148.31019418233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.829130257223142, dt = 0.011912868534174946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.800481622797449e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011236269185416467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35438.17844475939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8410431257573165, dt = 0.011236269185416467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.793705359219414e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.01057416297475064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34221.531654259335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.852279394942733, dt = 0.01057416297475064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.793705359219414e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.009929664108586835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32228.50328287919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.862853557917483, dt = 0.009929664108586835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.793705359219414e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.00930540020239988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29421.905024076772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.87278322202607, dt = 0.00930540020239988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 276.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.7970934910084315e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.008703525270826415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26895.55897021172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.882088622228469, dt = 0.008703525270826415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 255.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.7970934910084315e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.00812574088318284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25484.112614142097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.890792147499296, dt = 0.00812574088318284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.797940523955686e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.007573323796362985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23275.14455487518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.898917888382479, dt = 0.007573323796362985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.800481622797449e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0070471584233035124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23013.27558643811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9064912121788415, dt = 0.0070471584233035124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.800481622797449e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.00654777259856372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21547.081116018657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.913538370602145, dt = 0.00654777259856372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.8140341499535175e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.006075375247769006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20091.971519726652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9200861432007095, dt = 0.006075375247769006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.827586677109586e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0056298947401783005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18172.954706661112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.926161518448478, dt = 0.0056298947401783005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.8140341499535175e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.005211016890418912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16515.41733796114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.931791413188657, dt = 0.005211016890418912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.8140341499535175e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.004818221765418488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15759.30900187677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.937002430079076, dt = 0.004818221765418488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.800481622797449e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044508186368792954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14669.797882197894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.941820651844495, dt = 0.0044508186368792954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 247.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.827586677109586e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.004107978591623821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13325.715641251107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.946271470481374, dt = 0.004107978591623821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.827586677109586e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037887644672162024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12423.468463041194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950379449072998, dt = 0.0037887644672162024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,5.827586677109586e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034921579157008533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11323.33079738154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.954168213540214, dt = 0.0034921579157008533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.800481622797449e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.003217083512921972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10396.584657827701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.957660371455915, dt = 0.003217083512921972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.7462715141731735e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029624299247568795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9856.957017592218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.960877454968837, dt = 0.0029624299247568795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.7462715141731735e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.002727068215701031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8652.139054987827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.963839884893594, dt = 0.002727068215701031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 282.64 us (97.0%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.800481622797449e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.002509867441216581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7946.774790775224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.966566953109295, dt = 0.002509867441216581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 252.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.800481622797449e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002309707705129699 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7524.61726471187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.969076820550511, dt = 0.002309707705129699 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.7462715141731735e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021254908893603287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6851.478732651325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.971386528255641, dt = 0.0021254908893603287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.7462715141731735e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019561492776532076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6423.913267561931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9735120191450015, dt = 0.0019561492776532076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.7462715141731735e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001800652299931394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5711.824836099738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.975468168422655, dt = 0.001800652299931394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.7462715141731735e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016580116214322174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5505.263163048792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.977268820722586, dt = 0.0016580116214322174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.7462715141731735e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015272847927179892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4831.974805028804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.978926832344019, dt = 0.0015272847927179892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.7462715141731735e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014075776645514693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4640.851199021528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.980454117136737, dt = 0.0014075776645514693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.854691731421724e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012980457568179424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4003.8049395593052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.981861694801288, dt = 0.0012980457568179424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.9631119486702744e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001197894754256558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3806.9734410432734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.983159740558106, dt = 0.001197894754256558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.1%)
patch tree reduce : 452.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 296.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,5.854691731421724e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011063802846100442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3453.680682118303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.984357635312363, dt = 0.0011063802846100442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,5.9631119486702744e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010228071175956727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3320.350014627126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.985464015596973, dt = 0.0010228071175956727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,5.854691731421724e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009465279063526876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3084.9205361210384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.986486822714569, dt = 0.0009465279063526876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.637851296924623e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008769415770990985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.961185468676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.987433350620921, dt = 0.0008769415770990985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.45 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.637851296924623e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008134914578807687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.9340494124517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.98831029219802, dt = 0.0008134914578807687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.637851296924623e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007556632236681686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.3272114958095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9891237836559, dt = 0.0007556632236681686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.637851296924623e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.000702982722724953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2246.3142205330164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.989879446879568, dt = 0.000702982722724953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,5.854691731421724e-18,0)
sum a = (-1.0842021724855044e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006550137381528449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2128.5234891971754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.990582429602293, dt = 0.0006550137381528449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,5.854691731421724e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006113557287813046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1945.6383361512662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.991237443340446, dt = 0.0006113557287813046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.854691731421724e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005716415850593693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1782.4374016408842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.991848799069228, dt = 0.0005716415850593693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,5.854691731421724e-18,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005355354282416374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1699.4105530046365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.992420440654287, dt = 0.0005355354282416374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.854691731421724e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005027304748489851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1623.6136375785472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.992955976082529, dt = 0.0005027304748489851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,5.854691731421724e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004729469830294842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1548.1107503366784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9934587065573774, dt = 0.0004729469830294842 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.071532165918825e-18,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044593029294688006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1398.7387421327676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.993931653540407, dt = 0.00044593029294688006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.21e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004214489695857876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1361.6249895960273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.994377583833353, dt = 0.0004214489695857876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039929305329178976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1253.956831444816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9947990328029395, dt = 0.00039929305329178976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.5052130349130266e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003792724208742027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1179.578007095286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.995198325856231, dt = 0.0003792724208742027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.5052130349130266e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003612152581098297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1150.1235849819145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.995577598277105, dt = 0.0003612152581098297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003449666429253224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1079.6403087839005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.995938813535215, dt = 0.0003449666429253224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003303872373391775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.8222776001553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.99628378017814, dt = 0.0003303872373391775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031735208535459825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 990.7612793338018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.996614167415479, dt = 0.00031735208535459825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.071532165918825e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003057495133611331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.4482817258286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9969315195008335, dt = 0.0003057495133611331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.071532165918825e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002954801291824017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 913.250027048306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.997237269014194, dt = 0.0002954801291824017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.5052130349130266e-18,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028645591566151413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.1518252458218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.997532749143376, dt = 0.00028645591566151413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002785994145726142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 869.7995428349428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.997819205059038, dt = 0.0002785994145726142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.5052130349130266e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002718429966587876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 849.2669091749326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.998097804473611, dt = 0.0002718429966587876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026612821370010695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.6899670205114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.99836964747027, dt = 0.00026612821370010695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.071532165918825e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002614052286913415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.3214406529358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.99863577568397, dt = 0.0002614052286913415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.071532165918825e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025763232044057803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.9822943401072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.998897180912661, dt = 0.00025763232044057803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,6.071532165918825e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025477545917423184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.8613815247677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.999154813233102, dt = 0.00025477545917423184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.328147661294743e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002528079500396042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.1871017082723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.999409588692276, dt = 0.0002528079500396042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.938893903907228e-18,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025171014172417676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.8071029005725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.999662396642316, dt = 0.00025171014172417676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2807138162485021e-18,6.938893903907228e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025146919775385375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.0870478960962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.999914106784041, dt = 0.00025146919775385375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2874900798265365e-18,6.938893903907228e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002520789283842837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 750.3954787684128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.000165575981795, dt = 0.0002520789283842837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2739375526704677e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002535396813553019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.0971414489316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.000417654910179, dt = 0.0002535396813553019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025585829013429054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.7902639235974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0006711945915345, dt = 0.00025585829013429054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002590480786263868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.8100216619114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.000927052881669, dt = 0.0002590480786263868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2468324983583301e-18,7.806255641895632e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026312892167491413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.4679757009591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.001186100960295, dt = 0.00026312892167491413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,7.806255641895632e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026812736101132706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.4511778937729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0014492298819695, dt = 0.00026812736101132706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,7.806255641895632e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027407677663761397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.7652848009611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.001717357242981, dt = 0.00027407677663761397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,7.806255641895632e-18,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028101761393258397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.0253481810918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.001991434019619, dt = 0.00028101761393258397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,7.806255641895632e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002889976670636943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.4783206721671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0022724516335515, dt = 0.0002889976670636943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,7.37257477290143e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002980724195544705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 860.2884862548699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.002561449300615, dt = 0.0002980724195544705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030830544310001364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 877.1372044497634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.00285952172017, dt = 0.00030830544310001364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 249.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003197688559347089 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 895.9647225648939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.00316782716327, dt = 0.0003197688559347089 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033254384223122967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.7367453057558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0034875960192045, dt = 0.00033254384223122967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.806255641895632e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034672123414138985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.8007264284726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0038201398614355, dt = 0.00034672123414138985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,7.806255641895632e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003624021581691377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.6759412865574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.004166861095577, dt = 0.0003624021581691377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,8.239936510889834e-18,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003796987475843247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1099.791758193676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.004529263253746, dt = 0.0003796987475843247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 285.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,8.239936510889834e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003987349225314296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.160457693378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.00490896200133, dt = 0.0003987349225314296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,8.239936510889834e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004196472393468511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1185.0406966974845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.005307696923861, dt = 0.0004196472393468511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.76 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,8.239936510889834e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044258581035620977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1230.0699267433422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0057273441632075, dt = 0.00044258581035620977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,8.239936510889834e-18,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046771529506144224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1329.2506226013513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.006169929973564, dt = 0.00046771529506144224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,8.023096076392733e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004952159631257809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1402.8489488234925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.006637645268626, dt = 0.0004952159631257809 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,8.239936510889834e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005252848288996196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1510.909029255639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.007132861231751, dt = 0.0005252848288996196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,8.239936510889834e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005581368563752966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1533.1362016664266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.007658146060651, dt = 0.0005581368563752966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,8.023096076392733e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005940062323842414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 1.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1679.2425896776872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.008216282917026, dt = 0.0005940062323842414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,8.023096076392733e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006331477045227147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1733.1763434798427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.00881028914941, dt = 0.0006331477045227147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,8.023096076392733e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006758379786759521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1921.9491379738176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.009443436853933, dt = 0.0006758379786759521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,8.023096076392733e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007223771690651385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1999.6110304405834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.010119274832609, dt = 0.0007223771690651385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.806255641895632e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007730902914242954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2219.0157948383953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.010841652001674, dt = 0.0007730902914242954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.589415207398531e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.000828328787179158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2306.093471825961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.011614742293099, dt = 0.000828328787179158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.589415207398531e-18,0)
sum a = (1.734723475976807e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008884720632996851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.637359787275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.012443071080278, dt = 0.0008884720632996851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.697835424647081e-18,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.000953929028783075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2564.4783231017695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.013331543143577, dt = 0.000953929028783075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.589415207398531e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010251396044463404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2902.6834776463643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.01428547217236, dt = 0.0010251396044463404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.589415207398531e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011025761778199708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060.2070342064867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0153106117768065, dt = 0.0011025761778199708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.48099499014998e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011867449693947181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3298.547576039935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.016413187954626, dt = 0.0011867449693947181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.48099499014998e-18,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012781872702472426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3487.061821739796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.01759993292402, dt = 0.0012781872702472426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.001377480504133762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3887.1550181371226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.018878120194268, dt = 0.001377480504133762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 277.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014852390594864416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3995.396096784819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.020255600698402, dt = 0.0014852390594864416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.3%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 247.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016021148283892907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4436.5512769429315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.021740839757888, dt = 0.0016021148283892907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017287973805916491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4746.1397030348735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.023342954586278, dt = 0.0017287973805916491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.48099499014998e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018660136910174227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5340.006323686324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.02507175196687, dt = 0.0018660136910174227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.426784881525705e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020145273291722493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5416.939251525637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0269377656578875, dt = 0.0020145273291722493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002175137008520213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6191.343561054275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.02895229298706, dt = 0.002175137008520213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.37 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002348674383545456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6254.73227412115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.03112742999558, dt = 0.002348674383545456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 492.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.002536000972160694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7093.079824371218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.033476104379125, dt = 0.002536000972160694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.002738004071795027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7400.559078382456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.036012105351286, dt = 0.002738004071795027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 252.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.002955591529412739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8066.5621808542155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0387501094230815, dt = 0.002955591529412739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.003189685219523745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8550.711778531111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.041705700952495, dt = 0.003189685219523745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.426784881525705e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.003441213080710002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9826.375683126713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.044895386172018, dt = 0.003441213080710002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 265.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.426784881525705e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.003711099561205019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10044.103472406701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.048336599252728, dt = 0.003711099561205019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.399679827213568e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040002543286486785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11299.189619207724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.052047698813933, dt = 0.0040002543286486785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.004309559109440687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11663.880944564646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.056047953142581, dt = 0.004309559109440687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.399679827213568e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.004639852540377895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13089.050924777901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.060357512252022, dt = 0.004639852540377895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.37257477290143e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.004991912940798533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13388.98559448811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0649973647924, dt = 0.004991912940798533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.005366438948605972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15006.639995252488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.069989277733199, dt = 0.005366438948605972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.96 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.005764028009596707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15838.236712148735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.075355716681805, dt = 0.005764028009596707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.359022245745361e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.006185152767628268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17582.815889523386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.081119744691401, dt = 0.006185152767628268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.48 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.365798509323396e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.006630135474243295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18218.641174177203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.087304897459029, dt = 0.006630135474243295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 235.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.365798509323396e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.007099120620946508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19978.913007352454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.093935032933273, dt = 0.007099120620946508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 270.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.369186641112413e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0075920460954038965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20438.7961652576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.101034153554219, dt = 0.0075920460954038965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.365798509323396e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.008108613273679849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23197.10780001241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.108626199649623, dt = 0.008108613273679849 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 264.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.365798509323396e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.008648256582633388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23898.37750866784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.116734812923303, dt = 0.008648256582633388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.365798509323396e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.009210113197068276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26323.3432967462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.125383069505936, dt = 0.009210113197068276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.359022245745361e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.009792993671240709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26148.771962455405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1345931827030045, dt = 0.009792993671240709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.359022245745361e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010395354438575418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28796.829115788853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.144386176374245, dt = 0.010395354438575418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.352245982167327e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.011015273240202472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30934.667583828337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.15478153081282, dt = 0.011015273240202472 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.222614453595284e-18,7.359022245745361e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-02 |
+-----------+-----------+
Info: cfl dt = 0.011650428654085162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33015.390535663704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.165796804053023, dt = 0.011650428654085162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.69 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.359022245745361e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.012298084982705801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34234.3334343075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.177447232707108, dt = 0.012298084982705801 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.345469718589293e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-02 |
+-----------+-----------+
Info: cfl dt = 0.01295508380821224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.363e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32478.814278334903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.189745317689813, dt = 0.01295508380821224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.345469718589293e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013617843528840231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38310.82986510553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.202700401498026, dt = 0.013617843528840231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.345469718589293e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.01428236813873382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40730.62592279865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.216318245026867, dt = 0.01428236813873382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0057740190981832e-18,7.359022245745361e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-02 |
+-----------+-----------+
Info: cfl dt = 0.014944266395423624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43161.21012287065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2306006131656, dt = 0.014944266395423624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.345469718589293e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015598782327612375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44642.17709009616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.245544879561024, dt = 0.015598782327612375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 403.88 us (97.8%)
LB move op cnt : 0
LB apply : 1.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.345469718589293e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.016240837766042984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.356e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41398.19486492899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.261143661888636, dt = 0.016240837766042984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0057740190981832e-18,7.318364664277155e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.016865087231716216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46749.75169293971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.277384499654679, dt = 0.016865087231716216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.304812137121086e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-02 |
+-----------+-----------+
Info: cfl dt = 0.017465985093358647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50854.492470517114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.294249586886395, dt = 0.017465985093358647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.291259609965017e-18,0)
sum a = (-2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.018037864420510863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51110.399141698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.311715571979754, dt = 0.018037864420510863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.291259609965017e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018575026426949928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53821.3433670495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3297534364002646, dt = 0.018575026426949928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 286.65 us (97.1%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.26415455565288e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019071838844689996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53765.5058123426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.348328462827214, dt = 0.019071838844689996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 236.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.237049501340742e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.019522841020438705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57806.05354272016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.367400301671904, dt = 0.019522841020438705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 296.09 us (97.1%)
LB move op cnt : 0
LB apply : 1.66 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.209944447028604e-18,0)
sum a = (2.168404344971009e-19,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019922853017320743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56161.08456943947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.386923142692343, dt = 0.019922853017320743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.209944447028604e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.020267085570398833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59375.73905830896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.406845995709664, dt = 0.020267085570398833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.237049501340742e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02055124742023804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59779.867852382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.427113081280063, dt = 0.02055124742023804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.100641709190665e-18,7.209944447028604e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.02077164636644927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62883.64148203356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.447664328700301, dt = 0.02077164636644927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1074179727686992e-18,7.209944447028604e-18,0)
sum a = (0,-3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020925280368445025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61326.00614525053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.46843597506675, dt = 0.020925280368445025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1074179727686992e-18,7.209944447028604e-18,0)
sum a = (0,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02100991518990736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61052.28424421729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.489361255435195, dt = 0.02100991518990736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1074179727686992e-18,7.209944447028604e-18,0)
sum a = (2.168404344971009e-19,1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.021024145441389783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63034.26302523889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.510371170625103, dt = 0.021024145441389783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.34 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1108061045577164e-18,7.209944447028604e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.020967436413522767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64141.13452728478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.531395316066493, dt = 0.020967436413522767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1074179727686992e-18,7.209944447028604e-18,0)
sum a = (2.168404344971009e-19,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020840144789314036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61709.364378197126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.552362752480016, dt = 0.020840144789314036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.209944447028604e-18,0)
sum a = (0,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020643517143141565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64243.00343333458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.573202897269329, dt = 0.020643517143141565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 286.30 us (97.1%)
LB move op cnt : 0
LB apply : 1.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.182839392716467e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020379666030793782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59332.67045361323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.593846414412471, dt = 0.020379666030793782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.182839392716467e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020051524396679846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61519.90886141494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.614226080443265, dt = 0.020051524396679846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 275.20 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.182839392716467e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019662779915458166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58022.9082459311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.634277604839944, dt = 0.019662779915458166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 222.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.182839392716467e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019217791691750783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57356.17421545017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.653940384755402, dt = 0.019217791691750783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.22 us (94.9%)
LB move op cnt : 0
LB apply : 6.03 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.182839392716467e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.01872149241537155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55763.458526685434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.673158176447153, dt = 0.01872149241537155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.182839392716467e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.01817927957270527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56983.52037902923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.691879668862525, dt = 0.01817927957270527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.087089182034596e-18,7.15573433840433e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.017596899622634228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53535.607532108465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.71005894843523, dt = 0.017596899622634228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.169286865560398e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-02 |
+-----------+-----------+
Info: cfl dt = 0.016980329147450176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52196.57139401035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.727655848057864, dt = 0.016980329147450176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.15573433840433e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-02 |
+-----------+-----------+
Info: cfl dt = 0.01633565689006409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52232.032710881744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.744636177205314, dt = 0.01633565689006409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.15573433840433e-18,0)
sum a = (4.336808689942018e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-02 |
+-----------+-----------+
Info: cfl dt = 0.015668970306705637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48453.03138883936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.760971834095378, dt = 0.015668970306705637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1141942363467336e-18,7.14218181124826e-18,0)
sum a = (4.336808689942018e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.014986249828600813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46248.777829546074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.776640804402084, dt = 0.014986249828600813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.15573433840433e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014293273474254808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45116.43141359295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.791627054230685, dt = 0.014293273474254808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013595533827727773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42577.16772220575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.80592032770494, dt = 0.013595533827727773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0057740190981832e-18,7.14218181124826e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.012898168740124538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41548.567588958496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.819515861532667, dt = 0.012898168740124538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0057740190981832e-18,7.14218181124826e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-02 |
+-----------+-----------+
Info: cfl dt = 0.012205906461230553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37941.122007707236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832414030272792, dt = 0.012205906461230553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 267.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0057740190981832e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-02 |
+-----------+-----------+
Info: cfl dt = 0.011523025300291007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36025.66755875318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.844619936734023, dt = 0.011523025300291007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0599841277224584e-18,7.162510601982364e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.010853327376640437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35131.23420013214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.856142962034314, dt = 0.010853327376640437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.162510601982364e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010200125571374065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33240.356833712685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.866996289410954, dt = 0.010200125571374065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.169286865560398e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.009566242441331816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31248.310430907048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.877196414982328, dt = 0.009566242441331816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.159122470193346e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.008954019609419439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28881.402192865316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.88676265742366, dt = 0.008954019609419439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.160816536087855e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.008365335997146563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26513.778256049885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.895716677033079, dt = 0.008365335997146563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.163251755811211e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.007801633207420125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24499.087719162297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.904082013030226, dt = 0.007801633207420125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.162510601982364e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0072639463856261745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23315.097637858555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.911883646237646, dt = 0.0072639463856261745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.169286865560398e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.006752938970263562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21912.338759774986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.919147592623272, dt = 0.006752938970263562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2768245622195593e-18,7.169286865560398e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0062689398755013115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20229.534659371246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.925900531593536, dt = 0.0062689398755013115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.169286865560398e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.005811981812042981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18233.615532868975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.932169471469037, dt = 0.005811981812042981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.182839392716467e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.005381839635866972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17516.902721540326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.93798145328108, dt = 0.005381839635866972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004978067804864515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15495.148775616359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.943363292916947, dt = 0.004978067804864515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.004600036211349981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14994.242862053685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.948341360721812, dt = 0.004600036211349981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,7.182839392716467e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.00424696383633816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13257.161581480414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.952941396933162, dt = 0.00424696383633816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.209944447028604e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.003917949833992059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12903.747556297922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9571883607695, dt = 0.003917949833992059 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.209944447028604e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036120017983189354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11600.491010813224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.961106310603492, dt = 0.0036120017983189354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.237049501340742e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033280610872845583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10656.610242040588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9647183124018115, dt = 0.0033280610872845583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.26415455565288e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.003065025181644428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9821.707662841123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.968046373489096, dt = 0.003065025181644428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.26415455565288e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.00282176713762217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9282.2279300061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9711113986707405, dt = 0.00282176713762217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.26415455565288e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025971522555189963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8367.333878703357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.973933165808362, dt = 0.0025971522555189963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,7.26415455565288e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.002390052132322381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7952.636833581603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.976530318063881, dt = 0.002390052132322381 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.318364664277155e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021993562975743904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6868.3935273433135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.978920370196204, dt = 0.0021993562975743904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.318364664277155e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002023981650431193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6704.91166002568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9811197264937785, dt = 0.002023981650431193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.318364664277155e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018628799242247902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6036.240588214291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.98314370814421, dt = 0.0018628799242247902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.26415455565288e-18,0)
sum a = (3.469446951953614e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017150434050213685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5622.180766094763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.985006588068435, dt = 0.0017150434050213685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.26415455565288e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015795091245567837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5089.619432454139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.986721631473457, dt = 0.0015795091245567837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.26415455565288e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014553617371882554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4770.653751139483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.988301140598014, dt = 0.0014553617371882554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013417352765587394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4205.40711906316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.989756502335203, dt = 0.0013417352765587394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.37257477290143e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012378139717144363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4083.625495409294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.991098237611761, dt = 0.0012378139717144363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.37257477290143e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011428322854074857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3589.6527403909276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.992336051583476, dt = 0.0011428322854074857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.001056074320012002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3348.4194061249777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9934788838688835, dt = 0.001056074320012002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.27 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.000976872719457729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3101.1780743829095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.994534958188895, dt = 0.000976872719457729 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (61.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009046071792628039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948.354970483118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.995511830908353, dt = 0.0009046071792628039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008387026614166746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2640.146061811834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.996416438087616, dt = 0.0008387026614166746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.15573433840433e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007786273967116772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2493.677356428945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.997255140749033, dt = 0.0007786273967116772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.86 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.15573433840433e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007238907442485266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2300.6855359114793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.998033768145745, dt = 0.0007238907442485266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (2.168404344971009e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006740409662830659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2197.9783705437035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.998757658889994, dt = 0.0006740409662830659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (-8.673617379884035e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006286629663261969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1979.7851925074262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9994316998562764, dt = 0.0006286629663261969 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005873760294076207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1894.2858710939822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.000060362822603, dt = 0.0005873760294076207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005498315955943158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1658.3512320404882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.000647738852011, dt = 0.0005498315955943158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.37257477290143e-18,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005157110911285639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1660.0081718714664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.001197570447605, dt = 0.0005157110911285639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.26 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004847238358215004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1526.9608481147227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.001713281538734, dt = 0.0004847238358215004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 366.94 us (97.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004566050405071715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.350e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.7759689359943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.002198005374556, dt = 0.0004566050405071715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004311139043303582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1353.2245880717546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.002654610415062, dt = 0.0004311139043303582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.37257477290143e-18,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004080318183140721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1234.7428740914827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.003085724319392, dt = 0.0004080318183140721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.66 us (96.5%)
LB move op cnt : 0
LB apply : 2.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003871606789402623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.8884331966094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.003493756137706, dt = 0.0003871606789402623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003683213132972377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1159.5716425397027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.003880916816646, dt = 0.0003683213132972377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003513520156242966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1084.301668022815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.004249238129944, dt = 0.0003513520156242966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,7.37257477290143e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033610719375031417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.1149294300308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.004600590145568, dt = 0.00033610719375031417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003224561229182764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.1123758308707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.004936697339318, dt = 0.0003224561229182764 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 284.71 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031028180375884803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.5428415767001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.005259153462235, dt = 0.00031028180375884803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 237.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002994799206766723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.4124395627626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.005569435265995, dt = 0.0002994799206766723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028995789660302693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 890.5112435912428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.005868915186673, dt = 0.00028995789660302693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 238.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,7.37257477290143e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028163403991324416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 893.5107727087809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.006158873083276, dt = 0.00028163403991324416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002744367792774731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 852.3925190004489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.00644050712319, dt = 0.0002744367792774731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002683039822840473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.6927688444847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.006714943902466, dt = 0.0002683039822840473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002631823538249287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.2338018930981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.006983247884751, dt = 0.0002631823538249287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025902691044496024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.8619478438559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.007246430238576, dt = 0.00025902691044496024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 261.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002558005271164372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 753.8721490010912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.007505457149021, dt = 0.0002558005271164372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002534735531958314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.2513279642519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.007761257676137, dt = 0.0002534735531958314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0570971181733668e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.000252023494640551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.1387052761194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.008014731229332, dt = 0.000252023494640551 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0503208545953324e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025143475990235597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.9230789212633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.008266754723973, dt = 0.00025143475990235597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.98 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0367683274392636e-18,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.000251698467263949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 718.2738668606696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.008518189483876, dt = 0.000251698467263949 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0028870095490916e-18,6.938893903907228e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025281231174094804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.6965147765518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.00876988795114, dt = 0.00025281231174094804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.5052130349130266e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002547804900285267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 723.9635985680309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.00902270026288, dt = 0.0002547804900285267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215718466126788e-19,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025761368232678287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 738.8267055000568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.009277480752909, dt = 0.00025761368232678287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 267.22 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0299920638612292e-18,6.5052130349130266e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002613290902281425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.9754719021722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.009535094435236, dt = 0.0002613290902281425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002659505301909636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.96187410661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.009796423525465, dt = 0.0002659505301909636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.99 us (96.5%)
LB move op cnt : 0
LB apply : 2.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.5052130349130266e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.000271508582453208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.4428474996305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.010062374055655, dt = 0.000271508582453208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027804079555578316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.9479372328365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.01033388263811, dt = 0.00027804079555578316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.5052130349130266e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028559194694397335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.2498519052932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.010611923433665, dt = 0.00028559194694397335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.5052130349130266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029421436039389967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 856.0510509421223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.01089751538061, dt = 0.00029421436039389967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.071532165918825e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003039682812653182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 877.5990804667165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.011191729741004, dt = 0.0003039682812653182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.5052130349130266e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.15e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031492231080775944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 856.73939420321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.01149569802227, dt = 0.00031492231080775944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 23.60 us (8.3%)
LB compute : 253.53 us (88.6%)
LB move op cnt : 0
LB apply : 1.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.5052130349130266e-18,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032715390093860926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.9251405217501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.011810620333078, dt = 0.00032715390093860926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.5052130349130266e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003407499110628488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.7788714741471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.012137774234017, dt = 0.0003407499110628488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.5052130349130266e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035580722860715505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.4945026687149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.012478524145079, dt = 0.00035580722860715505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.938893903907228e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003724334549868896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.0064879398358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.012834331373686, dt = 0.0003724334549868896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.5052130349130266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039074765870251375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1088.0552531805963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.013206764828672, dt = 0.00039074765870251375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.5052130349130266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041088119715965165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1139.0870012195433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.013597512487374, dt = 0.00041088119715965165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 249.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.5052130349130266e-18,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043297860860983195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.7307524982593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.014008393684534, dt = 0.00043297860860983195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.5052130349130266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045719857529998785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.8702187253068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.014441372293144, dt = 0.00045719857529998785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.5052130349130266e-18,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048371495847865105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1395.9018671619203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.014898570868443, dt = 0.00048371495847865105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.5052130349130266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005127179053132907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1456.1126464146375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.015382285826922, dt = 0.0005127179053132907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.7220534694101275e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005444150270011581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1495.1325235193717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.015895003732235, dt = 0.0005444150270011581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.938893903907228e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005790326463770017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1618.496531361443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.016439418759235, dt = 0.0005790326463770017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006168171121033365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1778.2465646366982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.017018451405612, dt = 0.0006168171121033365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.938893903907228e-18,0)
sum a = (5.421010862427522e-20,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006580361750375125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1837.4057554463404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.017635268517715, dt = 0.0006580361750375125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (8.673617379884035e-19,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007029804205660752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1969.2674093977676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.018293304692753, dt = 0.0007029804205660752 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007519647485391025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2096.872015853641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.01899628511332, dt = 0.0007519647485391025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.5052130349130266e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008053298898805832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2202.7743423515008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.019748249861859, dt = 0.0008053298898805832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.000863443945948405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2424.9092943293913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.02055357975174, dt = 0.000863443945948405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009267039332203943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2637.132142941958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.021417023697689, dt = 0.0009267039332203943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.000995537311841997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2799.0544003153163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.02234372763091, dt = 0.000995537311841997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,6.613633252161577e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010704034719386526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3055.349664605452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.023339264942752, dt = 0.0010704034719386526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,6.613633252161577e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011517951463271034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3157.941210824696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.024409668414691, dt = 0.0011517951463271034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,6.7220534694101275e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012402397123161806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3472.3042413975195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.025561463561019, dt = 0.0012402397123161806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,6.7220534694101275e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013363003386400853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.393e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.723875199449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.026801703273335, dt = 0.0013363003386400853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,6.7220534694101275e-18,0)
sum a = (3.469446951953614e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014405769262007468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3975.0074523763265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.028138003611975, dt = 0.0014405769262007468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.32 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015537067832145702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4220.1757656158325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.029578580538177, dt = 0.0015537067832145702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.613633252161577e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016763649665925736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.5021133823375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.031132287321391, dt = 0.0016763649665925736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.7220534694101275e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018092642119943575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4790.891761400869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.032808652287983, dt = 0.0018092642119943575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 520.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 255.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.830473686658678e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019531543650901585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5330.14439074463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.034617916499977, dt = 0.0019531543650901585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.830473686658678e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021088212162978775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5720.609598783991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.036571070865067, dt = 0.0021088212162978775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.776263578034403e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002277084630852352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6428.146208332438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.038679892081365, dt = 0.002277084630852352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.505213034913027e-19,6.830473686658678e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024587958558061813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6562.965338650794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.040956976712218, dt = 0.0024587958558061813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.776263578034403e-18,0)
sum a = (-1.734723475976807e-18,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026548338758356107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7529.307809019733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.043415772568025, dt = 0.0026548338758356107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.7220534694101275e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.002866100681011736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7652.079956355433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.04607060644386, dt = 0.002866100681011736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.7220534694101275e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030935153025882477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8670.600399365248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.048936707124872, dt = 0.0030935153025882477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.7220534694101275e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.003338006468064616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9358.573010237598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.05203022242746, dt = 0.003338006468064616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (61.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.749158523722265e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036005037251493955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10134.142776572147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.055368228895524, dt = 0.0036005037251493955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.44 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.749158523722265e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038819268867430964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10649.979714082976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.058968732620674, dt = 0.0038819268867430964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.749158523722265e-18,0)
sum a = (1.734723475976807e-18,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.004183173656780629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12087.362220551588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.062850659507417, dt = 0.004183173656780629 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.46 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.776263578034403e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.004505105310927871 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12303.773598991367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.067033833164198, dt = 0.004505105310927871 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.776263578034403e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.004848530328008646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13415.260448604437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.071538938475125, dt = 0.004848530328008646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.776263578034403e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0052141858989853814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14080.966041219173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.076387468803134, dt = 0.0052141858989853814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.7898161051904715e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0056027172816526275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15888.996025308681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.08160165470212, dt = 0.0056027172816526275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.776263578034403e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.006014655022156771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16942.491685279074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.087204371983772, dt = 0.006014655022156771 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 247.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.783039841612437e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.006450390130062855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18183.584690922107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.093219027005928, dt = 0.006450390130062855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 283.70 us (97.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.783039841612437e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.006910147372663086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18262.62653553783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.09966941713599, dt = 0.006910147372663086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.77965170982342e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.007393956946806428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20873.65277070695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.106579564508653, dt = 0.007393956946806428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 249.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.75781955236954e-19,6.77965170982342e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.007901624892331557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22328.70065447299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.11397352145546, dt = 0.007901624892331557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.7788046768761656e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.00843270272899562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23750.614401896994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.121875146347792, dt = 0.00843270272899562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.776263578034403e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.00898645692639446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25107.50041301803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.130307849076788, dt = 0.00898645692639446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1926223897340549e-18,6.769487314456368e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.00956183895037391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26989.509064305184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.139294306003181, dt = 0.00956183895037391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-18,6.769487314456368e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010157456765122776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28440.642915618253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.148856144953555, dt = 0.010157456765122776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-18,6.769487314456368e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.010771548801387682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30836.60195883881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.159013601718678, dt = 0.010771548801387682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3552527156068805e-18,6.776263578034403e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011401961520505722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32755.67426170164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.169785150520067, dt = 0.011401961520505722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.776263578034403e-18,0)
sum a = (4.336808689942018e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.01204613180233185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33897.89394676584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.181187112040572, dt = 0.01204613180233185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.776263578034403e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012701075452672975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37053.999740585416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.193233243842904, dt = 0.012701075452672975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 277.48 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.762711050878334e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013363383151864009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36956.258091274474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.205934319295578, dt = 0.013363383151864009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.014029225139852145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39869.33976220899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.219297702447442, dt = 0.014029225139852145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.762711050878334e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-02 |
+-----------+-----------+
Info: cfl dt = 0.014694365844451548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40805.26786376786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.233326927587294, dt = 0.014694365844451548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.749158523722265e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-02 |
+-----------+-----------+
Info: cfl dt = 0.015354189499712147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44986.27191925352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.248021293431746, dt = 0.015354189499712147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.47 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.776263578034403e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.01600373756463245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45207.54316605577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.263375482931458, dt = 0.01600373756463245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 621.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.762711050878334e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.01663775843645796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48243.50517129715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.279379220496091, dt = 0.01663775843645796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.7898161051904715e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.01725076956000993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48010.42223285967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.296016978932549, dt = 0.01725076956000993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-02 |
+-----------+-----------+
Info: cfl dt = 0.01783713157299535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 2.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51145.004373926386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.313267748492558, dt = 0.01783713157299535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.90 us (8.8%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.90 us (89.2%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.776263578034403e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-02 |
+-----------+-----------+
Info: cfl dt = 0.01839113361139825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51565.7336456464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.331104880065554, dt = 0.01839113361139825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4907779871675686e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-02 |
+-----------+-----------+
Info: cfl dt = 0.018907088349578063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55999.391864191566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.349496013676953, dt = 0.018907088349578063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-02 |
+-----------+-----------+
Info: cfl dt = 0.019379434793321992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57604.583330284666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.368403102026532, dt = 0.019379434793321992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.776263578034403e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.019802846312479548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58373.54978560195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.387782536819854, dt = 0.019802846312479548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 279.52 us (97.0%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.749158523722265e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020172340927838976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56982.59972514033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.407585383132334, dt = 0.020172340927838976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.749158523722265e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020483390490363292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60738.51590484994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.427757724060173, dt = 0.020483390490363292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.776263578034403e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02073202514362733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62188.81917079094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.448241114550537, dt = 0.02073202514362733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 340.00 ns (0.1%)
LB compute : 234.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.749158523722265e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.02091492937108982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63403.32762496773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.468973139694164, dt = 0.02091492937108982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.429791614965259e-18,6.749158523722265e-18,0)
sum a = (0,-1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.021029526019418075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62168.537577044895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.489888069065254, dt = 0.021029526019418075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.438261944437802e-18,6.749158523722265e-18,0)
sum a = (0,2.117582368135751e-22,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021074044967405198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63833.99958844832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.510917595084672, dt = 0.021074044967405198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.93 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4399560103323106e-18,6.776263578034403e-18,0)
sum a = (0,3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.021047573574315488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61728.96273447101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.531991640052077, dt = 0.021047573574315488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.749158523722265e-18,0)
sum a = (0,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.020950086675351053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60922.35473596526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.553039213626393, dt = 0.020950086675351053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4433441421213278e-18,6.749158523722265e-18,0)
sum a = (2.168404344971009e-19,6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020782454665625526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57287.19590990239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.573989300301744, dt = 0.020782454665625526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4501204056993622e-18,6.7220534694101275e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020546429086162082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63138.43598439776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.594771754967368, dt = 0.020546429086162082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4501204056993622e-18,6.749158523722265e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020244606045822646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60813.59073034499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.61531818405353, dt = 0.020244606045822646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019880368726646825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60206.90735328114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.635562790099353, dt = 0.019880368726646825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.776263578034403e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.0194578110713593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60087.96031145667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.655443158826, dt = 0.0194578110713593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.776263578034403e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.01898164548955389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57882.78018074577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.674900969897358, dt = 0.01898164548955389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.80336863234654e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.018457098000544986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56866.460752822764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.693882615386912, dt = 0.018457098000544986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.80336863234654e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017889794625274753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55417.8912118289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.712339713387456, dt = 0.017889794625274753 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4365678785432934e-18,6.816921159502609e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017285643030311885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54881.67432697861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.73022950801273, dt = 0.017285643030311885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.830473686658678e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-02 |
+-----------+-----------+
Info: cfl dt = 0.016650713412162663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51901.824168841704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.747515151043043, dt = 0.016650713412162663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.816921159502609e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.01599112240246659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50637.34794982909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.764165864455206, dt = 0.01599112240246659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.80336863234654e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015312923399210043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43466.76883671639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.780156986857673, dt = 0.015312923399210043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.80336863234654e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014622006220402037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47365.82351716305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.795469910256882, dt = 0.014622006220402037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.80336863234654e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-02 |
+-----------+-----------+
Info: cfl dt = 0.013924008375216299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43624.448278861906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.810091916477283, dt = 0.013924008375216299 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.816921159502609e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-02 |
+-----------+-----------+
Info: cfl dt = 0.013224239596136342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41654.3861966319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.8240159248525, dt = 0.013224239596136342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (76.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463672932855431e-18,6.830473686658678e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-02 |
+-----------+-----------+
Info: cfl dt = 0.012527620615570088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38373.51933544208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.837240164448636, dt = 0.012527620615570088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.844026213814747e-18,0)
sum a = (4.336808689942018e-19,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011838636538860836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37401.65084835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.849767785064206, dt = 0.011838636538860836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.8575787409708155e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011161304593226255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35067.88812257649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.861606421603067, dt = 0.011161304593226255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.8575787409708155e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010499155541643886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34153.92847146778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.872767726196294, dt = 0.010499155541643886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4094628242311558e-18,6.8575787409708155e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.009855227656442407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30442.85018731751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.883266881737939, dt = 0.009855227656442407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.8575787409708155e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.00923207185564099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28983.406336036252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.893122109394382, dt = 0.00923207185564099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.860966872759833e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.008631766415002766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26943.24177025037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.902354181250022, dt = 0.008631766415002766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.861813905707087e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.008055939573554438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26460.112394155203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.910985947665024, dt = 0.008055939573554438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.862660938654341e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.007505798338841415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23358.44848080347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.919041887238578, dt = 0.007505798338841415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5178830414797062e-18,6.867743136337867e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.00698216185652497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22652.55526292637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.92654768557742, dt = 0.00698216185652497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.877907531704919e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.006485497821849951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20064.628429571545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.933529847433945, dt = 0.006485497821849951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.877907531704919e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.006015960562714009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19986.05736554559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.940015345255794, dt = 0.006015960562714009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.884683795282953e-18,0)
sum a = (8.673617379884035e-19,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.005573429601164172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17306.04370310533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.946031305818508, dt = 0.005573429601164172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.884683795282953e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.005157547689360506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16823.345816070796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.951604735419671, dt = 0.005157547689360506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6263032587282567e-18,6.884683795282953e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.004767757506648231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15134.229093689053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.956762283109033, dt = 0.004767757506648231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.8575787409708155e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.004403336387860304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14519.246308787913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.961530040615681, dt = 0.004403336387860304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 267.43 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.884683795282953e-18,0)
sum a = (8.673617379884035e-19,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.004063428623038571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13070.0938093518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.965933377003541, dt = 0.004063428623038571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8431436932253575e-18,6.911788849595091e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037470750211756137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12328.789545670028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.969996805626579, dt = 0.0037470750211756137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.02 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.911788849595091e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.00345323956291169 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10622.44130160509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.973743880647755, dt = 0.00345323956291169 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 291.29 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.003180833078445365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9714.809177182146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.977197120210667, dt = 0.003180833078445365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 285.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,6.993104012531504e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.002928733977492263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9185.047792093777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.980377953289112, dt = 0.002928733977492263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,6.993104012531504e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026958061290907396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8631.171703397595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.983306687266605, dt = 0.0026958061290907396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,6.993104012531504e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002480914042141194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8090.506263829579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.986002493395697, dt = 0.002480914042141194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.6%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 433.86 us (97.9%)
LB move op cnt : 0
LB apply : 2.06 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,6.993104012531504e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022829355348708462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.371e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.475441042456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.988483407437839, dt = 0.0022829355348708462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.101524229780054e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021007721051944637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6696.500286023831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.990766342972709, dt = 0.0021007721051944637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 271.32 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-18,7.047314121155779e-18,0)
sum a = (3.469446951953614e-18,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019333572264609938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6187.92225941435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.992867115077903, dt = 0.0019333572264609938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.15573433840433e-18,0)
sum a = (1.734723475976807e-18,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001779662796504646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5744.469996871594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.994800472304364, dt = 0.001779662796504646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.81 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.15573433840433e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016387039642502745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5266.9020566979325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.996580135100869, dt = 0.0016387039642502745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.26415455565288e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015095425491318663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4955.612252076751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.99821883906512, dt = 0.0015095425491318663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.62 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.26415455565288e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013912892558041417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4364.847651396089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.99972838161425, dt = 0.0013912892558041417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001283104871352408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4275.664206051501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.001119670870056, dt = 0.001283104871352408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.37257477290143e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011842006154929622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3778.792891715582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.002402775741407, dt = 0.0011842006154929622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.48099499014998e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010938377969487614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3620.8826408792675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.0035869763569, dt = 0.0010938377969487614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.48099499014998e-18,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.001011326911933931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3257.492101176855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.004680814153849, dt = 0.001011326911933931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.48099499014998e-18,0)
sum a = (-1.734723475976807e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009360263039709013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3098.4122178724506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.005692141065783, dt = 0.0009360263039709013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-18,7.589415207398531e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008673404884398064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2691.986973673053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.006628167369755, dt = 0.0008673404884398064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.589415207398531e-18,0)
sum a = (1.734723475976807e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.000804718230549532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2645.146164962186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.007495507858195, dt = 0.000804718230549532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.806255641895632e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007476504519584742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2420.8584521790885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.008300226088744, dt = 0.0007476504519584742 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 253.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.806255641895632e-18,0)
sum a = (8.673617379884035e-19,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006956680291224494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2243.6581081794993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.009047876540702, dt = 0.0006956680291224494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.589415207398531e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006483395356133338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2111.8232905900077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.009743544569824, dt = 0.0006483395356133338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006052689711000377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1957.8769637997561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.010391884105438, dt = 0.0006052689711000377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005660935113496197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1787.1265113373345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.010997153076538, dt = 0.0005660935113496197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005304813064080522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1735.7954123993397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.011563246587887, dt = 0.0005304813064080522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004981293479635963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1566.164715577473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.012093727894294, dt = 0.0004981293479635963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004687614216819329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1439.8212193783804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.012591857242258, dt = 0.0004687614216819329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044212615593151845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1399.5849185689156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.01306061866394, dt = 0.00044212615593151845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041799517469305174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.0484806264185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.013502744819872, dt = 0.00041799517469305174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 271.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.15573433840433e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003961613594763003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1224.9590974654632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.013920739994566, dt = 0.0003961613594763003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,6.938893903907228e-18,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037643722266495394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1216.5021504575216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.014316901354043, dt = 0.00037643722266495394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.37257477290143e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035865339279697524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1120.6351503433284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.014693338576707, dt = 0.00035865339279697524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034265721079293113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1100.7987856569537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.015051991969504, dt = 0.00034265721079293113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.000328311435004386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.9501230285733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.015394649180296, dt = 0.000328311435004386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 235.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,7.37257477290143e-18,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.15e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003154930521123847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 963.2734950217686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.0157229606153, dt = 0.0003154930521123847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003040921903130093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.762094741849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.016038453667411, dt = 0.0003040921903130093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.42 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,6.938893903907228e-18,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002940111308401273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 886.5388699787611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.016342545857723, dt = 0.0002940111308401273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 304.19 us (97.1%)
LB move op cnt : 0
LB apply : 1.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028516341365783624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.6666674726001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.016636556988564, dt = 0.00028516341365783624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,7.37257477290143e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027747303307513695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.2812900687438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.016921720402221, dt = 0.00027747303307513695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,7.37257477290143e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002708737190662111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.3299747112993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.017199193435296, dt = 0.0002708737190662111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026530830019872364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.9532965853227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.017470067154362, dt = 0.00026530830019872364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026072814426083413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.0754915433212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.01773537545456, dt = 0.00026072814426083413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002570926729193452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.6064569057767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.01799610359882, dt = 0.0002570926729193452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,6.938893903907228e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002543689470235879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.2158886917885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.01825319627174, dt = 0.0002543689470235879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 246.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002525313194815303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.2521151728229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.018507565218764, dt = 0.0002525313194815303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 238.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6156377411212794e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515611529674353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 734.1655133058136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.018760096538246, dt = 0.0002515611529674353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5961559833344305e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002514466000670356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.2082825643532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.019011657691214, dt = 0.0002514466000670356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.588532686809142e-18,7.37257477290143e-18,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025218244382079977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.8465667458472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.019263104291282, dt = 0.00025218244382079977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.574980159653073e-18,7.806255641895632e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025376999698365876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.7030861809715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.019515286735103, dt = 0.00025376999698365876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.806255641895632e-18,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025621705867656647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 753.1216755337357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.019769056732088, dt = 0.00025621705867656647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.806255641895632e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025953792745809324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.2013718367186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.020025273790765, dt = 0.00025953792745809324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 264.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.656295322589486e-18,7.806255641895632e-18,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002637534701899166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.1202456751279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.020284811718223, dt = 0.0002637534701899166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.806255641895632e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026889124640578884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.1012372441749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.020548565188413, dt = 0.00026889124640578884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.710505431213761e-18,7.806255641895632e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002749856882165811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.1866060376476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.02081745643482, dt = 0.0002749856882165811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,8.239936510889834e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002820783360914706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.9409105430728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.021092442123036, dt = 0.0002820783360914706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 284.44 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4936649967166602e-18,8.239936510889834e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002902181311440771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.445681537095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.021374520459128, dt = 0.0002902181311440771 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 232.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,8.239936510889834e-18,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002994617648187855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 871.6786158058031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.021664738590273, dt = 0.0002994617648187855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 260.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.239936510889834e-18,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030987408711238666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 876.0454065514557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.021964200355091, dt = 0.00030987408711238666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 226.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,7.806255641895632e-18,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032152857467456555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.1109260166468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.022274074442203, dt = 0.00032152857467456555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 361.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,8.239936510889834e-18,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033450786030172905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.952522017231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.022595603016878, dt = 0.00033450786030172905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,8.239936510889834e-18,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034890432546514017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1004.5783882128106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.02293011087718, dt = 0.00034890432546514017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,8.239936510889834e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003648207575879468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.8947332610057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.023279015202645, dt = 0.0003648207575879468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3852447794681098e-18,8.239936510889834e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003823710737965575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1091.9253661631215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.023643835960232, dt = 0.0003823710737965575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-18,8.239936510889834e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004016811128082693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1115.8906023363027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.024026207034028, dt = 0.0004016811128082693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.239936510889834e-18,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004228894964655226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1231.9679990439126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.024427888146837, dt = 0.0004228894964655226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 267.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.456776945386935e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004461485621717803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1249.471402522971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.024850777643303, dt = 0.0004461485621717803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.673617379884035e-18,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004716253671066154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1361.0781476471332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.025296926205476, dt = 0.0004716253671066154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.673617379884035e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004995027645771624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1410.1509206100352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.025768551572583, dt = 0.0004995027645771624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.673617379884035e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005299805521758364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1468.5270894282353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.02626805433716, dt = 0.0005299805521758364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.890457814381136e-18,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005632766905332137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1569.8708576129277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.026798034889337, dt = 0.0005632766905332137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (60.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.673617379884035e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005996285903499413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1728.2343185483153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.02736131157987, dt = 0.0005996285903499413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 295.87 us (97.0%)
LB move op cnt : 0
LB apply : 1.82 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.890457814381136e-18,0)
sum a = (-4.336808689942018e-19,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006392944640289191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1709.1957253614803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.027960940170221, dt = 0.0006392944640289191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.890457814381136e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006825547365717068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1948.3952618879223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.02860023463425, dt = 0.0006825547365717068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.8%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 299.14 us (97.2%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.890457814381136e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007297135084107468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1928.497526319992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.029282789370823, dt = 0.0007297135084107468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.673617379884035e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007811000604780795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2169.4831995417258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.030012502879234, dt = 0.0007811000604780795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.44 us (96.9%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.456776945386935e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008370703890155003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2313.5289201139058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.030793602939713, dt = 0.0008370703890155003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.456776945386935e-18,0)
sum a = (3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008980087543623847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2522.6197147062603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.03163067332873, dt = 0.0008980087543623847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 271.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.565197162635485e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009643292241664226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2623.0657761771226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.032528682083091, dt = 0.0009643292241664226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0357660829594124e-18,8.565197162635485e-18,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010364771871003923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2972.9272076742895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.033493011307257, dt = 0.0010364771871003923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8189256484623115e-18,8.456776945386935e-18,0)
sum a = (3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011149308081882473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2993.8466276251393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.034529488494357, dt = 0.0011149308081882473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2526065174565133e-18,8.565197162635485e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012002023912043133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3061.2212921975124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.035644419302546, dt = 0.0012002023912043133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.456776945386935e-18,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012928396072761758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3614.08469779848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.036844621693751, dt = 0.0012928396072761758 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.456776945386935e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013934265417727212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3958.857231241181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.038137461301027, dt = 0.0013934265417727212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.348356728138384e-18,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015025845037881056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4251.218287814156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.0395308878428, dt = 0.0015025845037881056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 234.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.239936510889834e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016209725340571041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4547.991869429091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.041033472346587, dt = 0.0016209725340571041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 267.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.348356728138384e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017492875380039137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4703.549583411376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.042654444880645, dt = 0.0017492875380039137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.348356728138384e-18,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001888263960919026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5117.956093469257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.04440373241865, dt = 0.001888263960919026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.40256683676266e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002038672912108749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5759.848583886484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.04629199637957, dt = 0.002038672912108749 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.456776945386935e-18,0)
sum a = (1.734723475976807e-18,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002201320634458009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6108.04265063163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.048330669291678, dt = 0.002201320634458009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.903127820947816e-18,8.456776945386935e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023770462054474046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6697.209382002778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.050531989926137, dt = 0.0023770462054474046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.119968255444917e-18,8.456776945386935e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025667183456094997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7209.3662479375425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.052909036131584, dt = 0.0025667183456094997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.69 us (9.6%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.65 us (88.2%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.119968255444917e-18,8.51098705401121e-18,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027712312011305474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7486.381415508649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.055475754477193, dt = 0.0027712312011305474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.119968255444917e-18,8.51098705401121e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.002991498959342039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8444.020015649852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.058246985678323, dt = 0.002991498959342039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 238.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.119968255444917e-18,8.565197162635485e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032284491498585704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9047.669908410386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.061238484637666, dt = 0.0032284491498585704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.119968255444917e-18,8.538092108323347e-18,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034830144808874848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9591.866715213691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.064466933787525, dt = 0.0034830144808874848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0115480381963664e-18,8.565197162635485e-18,0)
sum a = (0,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.00375612306067448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10586.366256958972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.067949948268412, dt = 0.00375612306067448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.903127820947816e-18,8.538092108323347e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.004048686859200447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11449.684477122404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.071706071329086, dt = 0.004048686859200447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 296.25 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.565197162635485e-18,0)
sum a = (8.673617379884035e-19,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.004361588276269878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.286e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11334.65071507796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.075754758188285, dt = 0.004361588276269878 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.592302216947623e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.004695664700291622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13069.995733630632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.080116346464555, dt = 0.004695664700291622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.578749689791554e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.005051690968676012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14228.316858067623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.084812011164846, dt = 0.005051690968676012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.592302216947623e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.005430359677200762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15557.559946476675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.089863702133522, dt = 0.005430359677200762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.578749689791554e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.005832259333220369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16182.280167939836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.095294061810723, dt = 0.005832259333220369 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.34 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.578749689791554e-18,0)
sum a = (8.673617379884035e-19,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.006257850407353145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17079.789179989315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.101126321143942, dt = 0.006257850407353145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.85 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.57197342621352e-18,0)
sum a = (0,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.00670743941115908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18050.88407799683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.107384171551296, dt = 0.00670743941115908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.568585294424502e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.007181151214805101 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20562.44012907328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.114091610962454, dt = 0.007181151214805101 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.568585294424502e-18,0)
sum a = (8.673617379884035e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.007678899918728263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21459.36868478542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.12127276217726, dt = 0.007678899918728263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.567208865885214e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.008200358706042911 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23239.190570018214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.128951662095988, dt = 0.008200358706042911 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.566891228529994e-18,0)
sum a = (4.336808689942018e-19,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.008744929226166823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25127.347471462286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.13715202080203, dt = 0.008744929226166823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.565197162635485e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.009311711192032347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26691.320472414052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.145896950028197, dt = 0.009311711192032347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 282.43 us (97.0%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.903127820947816e-18,8.55842089905745e-18,0)
sum a = (0,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.009899473009207245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26671.18606831938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.155208661220229, dt = 0.009899473009207245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.55842089905745e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010506624389798871 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29648.831357176852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.165108134229436, dt = 0.010506624389798871 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (1.3%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7947076036992655e-18,8.55842089905745e-18,0)
sum a = (0,1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011131192030240064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30958.3911485982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.175614758619234, dt = 0.011131192030240064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.551644635479416e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011770799541649841 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33503.97167739721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.186745950649474, dt = 0.011770799541649841 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.551644635479416e-18,0)
sum a = (0,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-02 |
+-----------+-----------+
Info: cfl dt = 0.012422652904896688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35484.736160234395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.198516750191123, dt = 0.012422652904896688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.551644635479416e-18,0)
sum a = (2.168404344971009e-19,-1.0842021724855044e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.013083532769333234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37669.48402314005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.21093940309602, dt = 0.013083532769333234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.538092108323347e-18,0)
sum a = (4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013749794913577135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39366.20372627587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.224022935865353, dt = 0.013749794913577135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.551644635479416e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.014417380128107638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41468.094381850344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.23777273077893, dt = 0.014417380128107638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 243.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.551644635479416e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015081834653372322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43118.114910476186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.252190110907039, dt = 0.015081834653372322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.538092108323347e-18,0)
sum a = (2.168404344971009e-19,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-02 |
+-----------+-----------+
Info: cfl dt = 0.015738342106206952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45338.52349749265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.267271945560411, dt = 0.015738342106206952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.538092108323347e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.016381767547512097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46078.08789814081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.283010287666619, dt = 0.016381767547512097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.524539581167279e-18,0)
sum a = (0,-5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-02 |
+-----------+-----------+
Info: cfl dt = 0.01700671398543668 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48916.45515981363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.299392055214131, dt = 0.01700671398543668 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.524539581167279e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.017607591176195786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51233.01513419261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.316398769199568, dt = 0.017607591176195786 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.604972223514302e-18,8.51098705401121e-18,0)
sum a = (0,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018178696090522348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52282.262075826766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.334006360375763, dt = 0.018178696090522348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.51098705401121e-18,0)
sum a = (2.168404344971009e-19,-2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.0187143038754442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54114.849265740966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.352185056466286, dt = 0.0187143038754442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.51098705401121e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01920876758268189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56114.66724381988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.370899360341731, dt = 0.01920876758268189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.51098705401121e-18,0)
sum a = (0,-1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019656624386102856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57042.75536070565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.390108127924414, dt = 0.019656624386102856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.483881999699072e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020052705505085366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57507.271551840095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.409764752310517, dt = 0.020052705505085366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.51098705401121e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020392246624137876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61164.99426247351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.429817457815602, dt = 0.020392246624137876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.51098705401121e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020670995286901195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60913.13826656506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.45020970443974, dt = 0.020670995286901195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.51098705401121e-18,0)
sum a = (0,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020885311576360834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64088.32607998882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.47088069972664, dt = 0.020885311576360834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.611748487092337e-18,8.51098705401121e-18,0)
sum a = (0,-3.3881317890172014e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02103225839763035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63410.145568835826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.491766011303001, dt = 0.02103225839763035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.615136618881354e-18,8.51098705401121e-18,0)
sum a = (2.168404344971009e-19,-8.470329472543003e-22,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.02110967787033027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64735.33439874735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.512798269700632, dt = 0.02110967787033027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.621489365985761e-18,8.51098705401121e-18,0)
sum a = (0,1.6940658945086007e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021116250717718055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62846.6853013033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.533907947570961, dt = 0.021116250717718055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.538092108323347e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021051536099262927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64952.64958011924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.55502419828868, dt = 0.021051536099262927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 275.60 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6253010142484055e-18,8.538092108323347e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020915990048572555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60558.70878032931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.576075734387942, dt = 0.020915990048572555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.538092108323347e-18,0)
sum a = (2.168404344971009e-19,1.3552527156068805e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02071096151309931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63901.28177970504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.596991724436515, dt = 0.02071096151309931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.618524750670371e-18,8.51098705401121e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020438665899214652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61334.41270983704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.617702685949615, dt = 0.020438665899214652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 231.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.645629804982509e-18,8.51098705401121e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.02010213695255299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61154.49885857494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.63814135184883, dt = 0.02010213695255299 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 294.73 us (97.1%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-18,8.483881999699072e-18,0)
sum a = (0,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019705158692956203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58914.266734717596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.658243488801384, dt = 0.019705158692956203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 252.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-18,8.483881999699072e-18,0)
sum a = (-2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.01925217992197144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.331e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53304.12690352865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.67794864749434, dt = 0.01925217992197144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-18,8.483881999699072e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018748214481357637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56925.14797967122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.697200827416312, dt = 0.018748214481357637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-18,8.483881999699072e-18,0)
sum a = (2.168404344971009e-19,2.710505431213761e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.01819873092662528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55120.28156723722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.71594904189767, dt = 0.01819873092662528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.017609535566777242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53273.28395603753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.734147772824295, dt = 0.017609535566777242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.524539581167279e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-02 |
+-----------+-----------+
Info: cfl dt = 0.016986652901446863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52702.64737310999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.751757308391072, dt = 0.016986652901446863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-02 |
+-----------+-----------+
Info: cfl dt = 0.016336207365703445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49412.80267524316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.76874396129252, dt = 0.016336207365703445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 247.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (0,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-02 |
+-----------+-----------+
Info: cfl dt = 0.015664309990560555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49157.487354649325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.785080168658224, dt = 0.015664309990560555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.69 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.63207727782644e-18,8.524539581167279e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.014976953134318884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46439.181432417936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.800744478648785, dt = 0.014976953134318884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.497434526855141e-18,0)
sum a = (2.168404344971009e-19,5.421010862427522e-20,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014279915874608511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46235.82709279487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.815721431783103, dt = 0.014279915874608511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.483881999699072e-18,0)
sum a = (2.168404344971009e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013578682015642345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40867.190506073624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.830001347657712, dt = 0.013578682015642345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.483881999699072e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.012878372002314791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39851.93095861027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.843580029673355, dt = 0.012878372002314791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 293.95 us (97.1%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-18,8.483881999699072e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-02 |
+-----------+-----------+
Info: cfl dt = 0.012183689381943408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36864.39617723136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.856458401675669, dt = 0.012183689381943408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.87 us (97.0%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5236570605778894e-18,8.483881999699072e-18,0)
sum a = (0,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-02 |
+-----------+-----------+
Info: cfl dt = 0.011498881849615988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35173.97761072243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.868642091057612, dt = 0.011498881849615988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 283.50 us (97.0%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.497434526855141e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.010827716380849667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32824.87468132793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.880140972907228, dt = 0.010827716380849667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 284.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.497434526855141e-18,0)
sum a = (-4.336808689942018e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010173467513904228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.302e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29940.38693142998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.890968689288076, dt = 0.010173467513904228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 235.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.497434526855141e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.00953891750360474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30511.935479617092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.901142156801981, dt = 0.00953891750360474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.500822658644158e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.008926366831213556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27867.511247986073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.910681074305586, dt = 0.008926366831213556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3610267347050637e-18,8.49912859274965e-18,0)
sum a = (0,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.008337653416499564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26920.8612622374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.9196074411368, dt = 0.008337653416499564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 278.64 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.504210790433175e-18,0)
sum a = (4.336808689942018e-19,2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.007774178829344574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24157.736127685093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.927945094553298, dt = 0.007774178829344574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.504210790433175e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.007236939826152291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23904.838431527027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.935719273382642, dt = 0.007236939826152291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.504210790433175e-18,0)
sum a = (8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.006726563626146933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21732.7151890098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.942956213208793, dt = 0.006726563626146933 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.517763317589244e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.006243345478910636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20119.332879801397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.94968277683494, dt = 0.006243345478910636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.524539581167279e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.005787287242249815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18692.23139872798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.955926122313851, dt = 0.005787287242249815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.524539581167279e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.005358135875071461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17398.57271517847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.9617134095561, dt = 0.005358135875071461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.51098705401121e-18,0)
sum a = (8.673617379884035e-19,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.004955420941642704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16444.785302182794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.967071545431173, dt = 0.004955420941642704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.51098705401121e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.004578490411826825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14987.348108185493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.972026966372816, dt = 0.004578490411826825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (-8.673617379884035e-19,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.004226544219307137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13877.834689672027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.976605456784643, dt = 0.004226544219307137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.483881999699072e-18,0)
sum a = (1.734723475976807e-18,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038986652012497573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12653.292720242109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.98083200100395, dt = 0.0038986652012497573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.577867169202165e-18,8.483881999699072e-18,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035938471850765976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11933.989183031883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.9847306662052, dt = 0.0035938471850765976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.483881999699072e-18,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033110201094342442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11191.417910002023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.988324513390276, dt = 0.0033110201094342442 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.003049072166802375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10036.511672365641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.99163553349971, dt = 0.003049072166802375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (1.734723475976807e-18,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.002806869035257382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9037.114324223667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.994684605666514, dt = 0.002806869035257382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.686287386450715e-18,8.51098705401121e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.002583270328187993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8373.395112993385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.997491474701771, dt = 0.002583270328187993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,8.51098705401121e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.002377143435210844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7700.355451675592 (tsim/hr) [sph::Model][rank=0]
(1636, 2, 3)
Elliptical orbit (similar mass)
235 m1 = 1.0
236 m2 = 1.0 / 3.0
237 a = 1.0
238 _x1, _x2, _v1, _v2 = shamrock.phys.get_binary_rotated(
239 m1=1.0, m2=m2, a=a, e=0.9, nu=0.0, G=G, roll=0.0, pitch=0.0, yaw=np.pi
240 )
241 ctx, model = build_sink_sph_model(
242 positions=[_x1, _x2],
243 velocities=[_v1, _v2],
244 masses=[m1, m2],
245 accretion_radii=[1, 1],
246 box_extent=3,
247 eta_sink=0.5,
248 )
249 snapshots = run_sim(model, 10, use_dt=None)
250 plot_orbit_trajectory(snapshots, "Elliptical orbit (similar mass)")

=== INITIAL CONDITIONS ===
Sink 1: pos=(0.024999999999999994, -3.0616169978683824e-18, 0.0), vel=(9.682228113494944e-16, 7.906139239686159, 0.0), mass=1.0
Sink 2: pos=(-0.07499999999999998, 9.184850993605147e-18, 0.0), vel=(-2.9046684340484833e-15, -23.71841771905848, 0.0), mass=0.3333333333333333
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.59 us (3.6%)
patch tree reduce : 912.00 ns (0.1%)
gen split merge : 661.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.25 us (0.2%)
LB compute : 576.11 us (93.0%)
LB move op cnt : 0
LB apply : 13.29 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,-2.524354896707238e-29,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-06 |
+-----------+-----------+
Info: cfl dt = 2.516472318062279e-06 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.635e-03 | 1.5% | 1.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0, dt = 2.516472318062279e-06 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (0.9%)
patch tree reduce : 512.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 327.53 us (97.2%)
LB move op cnt : 0
LB apply : 1.76 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168404344971009e-19,0,0)
sum a = (-2.2737367544323206e-13,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.56e-05 |
+-----------+-----------+
Info: cfl dt = 8.556007806515318e-05 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.565e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.789829784407541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.516472318062279e-06, dt = 8.556007806515318e-05 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (1.0%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 314.57 us (97.0%)
LB move op cnt : 0
LB apply : 1.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0001409612933397041 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.604e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 192.00675792815176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.807655038321546e-05, dt = 0.0001409612933397041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (0.8%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 342.16 us (97.3%)
LB move op cnt : 0
LB apply : 1.90 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00017816202245242064 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.550e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.3910145475685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00022903784372291957, dt = 0.00017816202245242064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (0.9%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 311.98 us (97.0%)
LB move op cnt : 0
LB apply : 1.73 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.00020362698349680656 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.449e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.67339240541645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00040719986617534024, dt = 0.00020362698349680656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (0.8%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 349.30 us (97.4%)
LB move op cnt : 0
LB apply : 1.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.00022173047365783862 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.507e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.28790948220916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0006108268496721467, dt = 0.00022173047365783862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 322.75 us (97.2%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.00023539612159719718 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.436e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 555.7336568157125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0008325573233299853, dt = 0.00023539612159719718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (0.9%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 333.11 us (97.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,0,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.00024656558825372543 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.523e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 556.3992069551767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0010679534449271825, dt = 0.00024656558825372543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 322.23 us (97.2%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002565300850413983 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.407e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 630.8275029268832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.001314519033180908, dt = 0.0002565300850413983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.74 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002661570275440294 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.334e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.0604527533669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0015710491182223062, dt = 0.0002661570275440294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (0.8%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 344.78 us (97.4%)
LB move op cnt : 0
LB apply : 1.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,0,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027604139934629267 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.403e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.0669255589102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0018372061457663357, dt = 0.00027604139934629267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 270.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002866054620757648 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.7537975528069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.002113247545112628, dt = 0.0002866054620757648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 297.34 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,0,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029816404690227483 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.326e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.8691660342013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.002399853007188393, dt = 0.00029816404690227483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 262.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031096731571163765 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.7767397395803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0026980170540906677, dt = 0.00031096731571163765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 276.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,0,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003252289272492325 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 937.2970894033065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0030089843698023052, dt = 0.0003252289272492325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (0.8%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 290.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.1%)
LB compute : 289.77 us (97.2%)
LB move op cnt : 0
LB apply : 1.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,8.881784197001252e-16,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034114480677405564 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 889.6711507183687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.003334213297051538, dt = 0.00034114480677405564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 286.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,1.7763568394002505e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035890589133546813 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.340e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 916.4311549746927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0036753581038255936, dt = 0.00035890589133546813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037870702857823265 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.6079617179973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004034263995161062, dt = 0.00037870702857823265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 296.08 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040075343449585835 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.310e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5635349146485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004412971023739294, dt = 0.00040075343449585835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,8.881784197001252e-16,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004252656181773167 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1151.6436458465432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004813724458235153, dt = 0.0004252656181773167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 281.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045248336153025994 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1162.889932805934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00523899007641247, dt = 0.00045248336153025994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048266913547218303 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.0020753859476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00569147343794273, dt = 0.00048266913547218303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 258.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (-1.4210854715202004e-14,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005161112001054376 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1368.5160133510426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006174142573414912, dt = 0.0005161112001054376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005531265486260965 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1447.583027894075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00669025377352035, dt = 0.0005531265486260965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 512.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.6645352591003757e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005940637963143093 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1561.0173414951132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007243380322146447, dt = 0.0005940637963143093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.6645352591003757e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006393060760984661 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.6097219863675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007837444118460758, dt = 0.0006393060760984661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006892739738934983 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1892.8023188593997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008476750194559225, dt = 0.0006892739738934983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 267.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.220446049250313e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.000744428515636897 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1901.4775007828437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.009166024168452722, dt = 0.000744428515636897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 284.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.220446049250313e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.000805274200686217 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.494e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1793.3463128163626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.009910452684089618, dt = 0.000805274200686217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.0%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 286.21 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.6645352591003757e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008723620609891097 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.4% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2151.11371826769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010715726884775836, dt = 0.0008723620609891097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 291.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 268.61 us (97.2%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (73.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.6645352591003757e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009462927108154275 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2494.4585982760773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.011588088945764945, dt = 0.0009462927108154275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.220446049250313e-15,0)
sum a = (1.4210854715202004e-14,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010277193368855432 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2772.732292986837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012534381656580372, dt = 0.0010277193368855432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 274.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011173505627470697 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.315e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814.071777201037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013562100993465916, dt = 0.0011173505627470697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 290.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012159531037404196 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.372e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2932.3536804680803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014679451556212985, dt = 0.0012159531037404196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 325.64 us (97.3%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013243541094924056 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3248.0319870073045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015895404659953406, dt = 0.0013243541094924056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014434430693500032 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3902.5146204264574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01721975876944581, dt = 0.0014434430693500032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 285.04 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001574173132399448 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.387e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3745.7651056606137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018663201838795815, dt = 0.001574173132399448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017175616677309767 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4545.40029888512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.020237374971195262, dt = 0.0017175616677309767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.7%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 300.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.1%)
LB compute : 348.79 us (97.6%)
LB move op cnt : 0
LB apply : 1.81 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (74.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.9984014443252818e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018746898625905382 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.394e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4434.467552260016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02195493663892624, dt = 0.0018746898625905382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020467011263893523 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5715.527554523244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02382962650151678, dt = 0.0020467011263893523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 300.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.1%)
LB compute : 228.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.220446049250313e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002234798037847614 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5926.149623912727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02587632762790613, dt = 0.002234798037847614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.002440237541756318 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.326e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6066.830858611373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028111125665753744, dt = 0.002440237541756318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.1094237467877974e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.002664324072236526 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6855.54129649729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030551363207510063, dt = 0.002664324072236526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.1094237467877974e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.002908400252665954 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7601.9289894902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03321568727974659, dt = 0.002908400252665954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.00317383480081989 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8441.4348896531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.036124087532412544, dt = 0.00317383480081989 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,1.887379141862766e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.003462007253966003 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9192.097913642689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.039297922333232434, dt = 0.003462007253966003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,1.887379141862766e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.003774289125964589 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9520.555650490198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04275992958719844, dt = 0.003774289125964589 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.1094237467877974e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.004112021120745831 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11115.062030678539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.046534218713163024, dt = 0.004112021120745831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 301.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.1%)
LB compute : 278.63 us (97.2%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (75.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.0539125955565396e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.004476486058305922 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12517.13413849595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.050646239833908854, dt = 0.004476486058305922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.004868877225488631 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.375e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11716.0025633616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05512272589221478, dt = 0.004868877225488631 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.0539125955565396e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.005290261949498333 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.342e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13058.959923588412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05999160311770341, dt = 0.005290261949498333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 256.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.0539125955565396e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.005741540312554503 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14651.658014272425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06528186506720174, dt = 0.005741540312554503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.0539125955565396e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.006223399086224626 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16875.315960053696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07102340537975624, dt = 0.006223399086224626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 291.56 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,2.067790383364354e-15,0)
sum a = (1.7763568394002505e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.006736261167775887 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.331e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16829.764353043207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07724680446598087, dt = 0.006736261167775887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.067790383364354e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.007280231050860483 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19517.191811487595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08398306563375675, dt = 0.007280231050860483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,2.067790383364354e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.00785503715918378 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20596.201975231383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09126329668461723, dt = 0.00785503715918378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 292.91 us (97.1%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.067790383364354e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.008459972211483667 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.369e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20648.5396642139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.099118333843801, dt = 0.008459972211483667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.0747292772682613e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.009093833161997225 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25080.621221211215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10757830605528468, dt = 0.009093833161997225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (0.9%)
patch tree reduce : 460.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 309.07 us (97.1%)
LB move op cnt : 0
LB apply : 1.73 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.067790383364354e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.00975486266033334 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.574e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20792.637224237697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11667213921728191, dt = 0.00975486266033334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.01044069438013592 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.322e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26562.51603712362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12642700187761524, dt = 0.01044069438013592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (-8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011148304952539413 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31686.824900702257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13686769625775116, dt = 0.011148304952539413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 300.47 us (97.0%)
LB move op cnt : 0
LB apply : 1.84 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011873975577172168 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31551.136751925773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14801600121029057, dt = 0.011873975577172168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (-8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012613266633546536 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34219.38807879368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15988997678746275, dt = 0.012613266633546536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 298.72 us (97.1%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013361008737987304 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33988.70920425185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17250324342100928, dt = 0.013361008737987304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-02 |
+-----------+-----------+
Info: cfl dt = 0.014111313642931667 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38949.34073626502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1858642521589966, dt = 0.014111313642931667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 290.50 us (96.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-02 |
+-----------+-----------+
Info: cfl dt = 0.014857608115478033 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41348.90660128587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19997556580192827, dt = 0.014857608115478033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3306690738754696e-16,2.0539125955565396e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015592693425953163 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44148.082997924896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2148331739174063, dt = 0.015592693425953163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.1094237467877974e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-02 |
+-----------+-----------+
Info: cfl dt = 0.01630883230240783 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47645.50642695081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23042586734335946, dt = 0.01630883230240783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-16,2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-02 |
+-----------+-----------+
Info: cfl dt = 0.016997864158394802 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49373.65766682604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24673469964576727, dt = 0.016997864158394802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017651348097238322 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48558.196590358784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2637325638041621, dt = 0.017651348097238322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-16,2.0539125955565396e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-02 |
+-----------+-----------+
Info: cfl dt = 0.01826073168162009 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50037.169210244756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28138391190140044, dt = 0.01826073168162009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 297.83 us (97.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-02 |
+-----------+-----------+
Info: cfl dt = 0.018817541807302433 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.314e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50036.06572704304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2996446435830205, dt = 0.018817541807302433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.019313592337023105 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54995.161971070636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31846218539032295, dt = 0.019313592337023105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 235.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-16,2.0539125955565396e-15,0)
sum a = (1.3322676295501878e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019741201561248072 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55776.643252858405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33777577772734607, dt = 0.019741201561248072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,1.9984014443252818e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020093411197256623 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58392.72486945592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35751697928859416, dt = 0.020093411197256623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020364197659458565 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59365.65618683156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37761039048585077, dt = 0.020364197659458565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 269.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.273559366969494e-16,1.9984014443252818e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020548665860762195 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56957.70119534838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39797458814530934, dt = 0.020548665860762195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.134781488891349e-16,1.942890293094024e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020643215935922592 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61989.47090901495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41852325400607154, dt = 0.020643215935922592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 285.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.134781488891349e-16,1.9984014443252818e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020645674066265215 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.306e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56901.89151039511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43916646994199415, dt = 0.020645674066265215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,2.0539125955565396e-15,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020555380026890887 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58007.27126739336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45981214400825937, dt = 0.020555380026890887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,1.9984014443252818e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02037322610518084 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60690.091681209604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48036752403515026, dt = 0.02037322610518084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.718447854656915e-16,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020101644524448733 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57824.59212070429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5007407501403311, dt = 0.020101644524448733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-16,1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019744543268583256 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59477.01354480254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5208423946647799, dt = 0.019744543268583256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,1.9984014443252818e-15,0)
sum a = (8.881784197001252e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.019307193027674578 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59033.849420336446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5405869379333631, dt = 0.019307193027674578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.996003610813204e-16,1.9984014443252818e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-02 |
+-----------+-----------+
Info: cfl dt = 0.01879607064419956 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55021.00903900973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5598941309610377, dt = 0.01879607064419956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.0539125955565396e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.01821866672063566 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54277.27812421765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5786902016052372, dt = 0.01821866672063566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3306690738754696e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.01758326677534905 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53488.96019863966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5969088683258729, dt = 0.01758326677534905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.016898716382923566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51281.98180192165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6144921351012219, dt = 0.016898716382923566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.016174181053774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47859.47800454309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6313908514841455, dt = 0.016174181053774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-02 |
+-----------+-----------+
Info: cfl dt = 0.015418911212101895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49012.25729883284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6475650325379195, dt = 0.015418911212101895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014642021601370639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45336.10839516128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6629839437500215, dt = 0.014642021601370639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 306.36 us (97.2%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0539125955565396e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-02 |
+-----------+-----------+
Info: cfl dt = 0.013852292913660998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.356e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38873.684433081355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6776259653513921, dt = 0.013852292913660998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 287.37 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.01305800156713548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39003.17815399841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.691478258265053, dt = 0.01305800156713548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.1371793224034263e-15,0)
sum a = (-8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.012266781520169107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36014.925498837954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7045362598321885, dt = 0.012266781520169107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (0.8%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 353.94 us (97.4%)
LB move op cnt : 0
LB apply : 1.84 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.54 us (89.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.1371793224034263e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-02 |
+-----------+-----------+
Info: cfl dt = 0.011485519980134643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.365e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32348.870417182818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7168030413523576, dt = 0.011485519980134643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.1649348980190553e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010720286984977944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33633.43761061352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7282885613324923, dt = 0.010720286984977944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 238.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.1649348980190553e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.009976297218265647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31567.781264428384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7390088483174703, dt = 0.009976297218265647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.1371793224034263e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.009257901135735182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30168.09954409869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7489851455357359, dt = 0.009257901135735182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.1510571102112408e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.00856860156655174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26816.510415032957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7582430466714711, dt = 0.00856860156655174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.1614654510671016e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.007911091403290266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26421.564892595634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7668116482380228, dt = 0.007911091403290266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.168404344971009e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0072873077807714525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23869.12933768445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7747227396413131, dt = 0.0072873077807714525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,2.1649348980190553e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.00669849821527848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22488.77932535931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7820100474220846, dt = 0.00669849821527848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.1649348980190553e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.006145294471299438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20932.73423964025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.788708545637363, dt = 0.006145294471299438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 274.51 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.192690473634684e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0056277903783709836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18651.02296378558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7948538401086624, dt = 0.0056277903783709836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 252.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.220446049250313e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.00514562037428963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16778.964031427393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8004816304870335, dt = 0.00514562037428963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.004698036148585032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15385.179739925854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8056272508613231, dt = 0.004698036148585032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 250.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.275957200481571e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.004283979357208726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14414.924605282835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8103252870099081, dt = 0.004283979357208726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.275957200481571e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0039021489421979094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13091.935061189552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8146092663671168, dt = 0.0039021489421979094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.3314683517128287e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.003551062095540729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11925.346499378571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8185114153093147, dt = 0.003551062095540729 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.220446049250313e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032291083410250524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9981.022634800416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8220624774048554, dt = 0.0032291083410250524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.3314683517128287e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.002934596565857741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9994.446020582644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8252915857458805, dt = 0.002934596565857741 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 262.69 us (95.3%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,2.220446049250313e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026657951158076325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8392.201184004698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8282261823117382, dt = 0.0026657951158076325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 225.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.220446049250313e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024209652784594766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7794.140152707461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8308919774275458, dt = 0.0024209652784594766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 292.81 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021983886265903203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7145.882017344415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8333129427060053, dt = 0.0021983886265903203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,1.9984014443252818e-15,0)
sum a = (-7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019963887869112605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6650.559498258539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8355113313325956, dt = 0.0019963887869112605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018133482481387515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6189.601118968788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8375077201195068, dt = 0.0018133482481387515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 287.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.001647720835970827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5320.714421723061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8393210683676455, dt = 0.001647720835970827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014980404696677677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5062.377274069079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8409687892036164, dt = 0.0014980404696677677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 270.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013629267831330861 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4506.149071901052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8424668296732841, dt = 0.0013629267831330861 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012410881490302402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3932.6823550225267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8438297564564172, dt = 0.0012410881490302402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,1.3322676295501878e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011313225927296038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3705.004947706773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8450708446054475, dt = 0.0011313225927296038 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,1.3322676295501878e-15,0)
sum a = (1.4210854715202004e-14,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010325170278127082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3379.2034750059306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8462021671981771, dt = 0.0010325170278127082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009436451895178531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3049.473591047272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8472346842259898, dt = 0.0009436451895178531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.3322676295501878e-15,0)
sum a = (-7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008637645890838024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844.7277569618964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8481783294155076, dt = 0.0008637645890838024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.3322676295501878e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007920127619156983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531.866637491746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8490420940045914, dt = 0.0007920127619156983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.3322676295501878e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007276030367689585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2366.7448675671144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8498341067665071, dt = 0.0007276030367689585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.3322676295501878e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006698200121910968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.833238095986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8505617098032761, dt = 0.0006698200121910968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006180148904171845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2112.0086148682162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8512315298154671, dt = 0.0006180148904171845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 282.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum a = (-7.105427357601002e-15,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005716007876853864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1802.8775052545095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8518495447058843, dt = 0.0005716007876853864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005300481132683163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1765.7758988152073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8524211454935696, dt = 0.0005300481132683163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,2.6645352591003757e-15,0)
sum a = (-1.4210854715202004e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004928800870476398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.299e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1469.3559351554916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8529511936068379, dt = 0.0004928800870476398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004596684467829437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1500.3960031891622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8534440736938855, dt = 0.0004596684467829437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.98 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,3.552713678800501e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004300293809105876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.1067556925439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8539037421406684, dt = 0.0004300293809105876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,3.552713678800501e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040361971032673496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.6920869347757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8543337715215791, dt = 0.00040361971032673496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 271.75 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038013333275347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.120013360987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8547373912319058, dt = 0.00038013333275347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,2.6645352591003757e-15,0)
sum a = (5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003592979355802598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1166.6466308376805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8551175245646593, dt = 0.0003592979355802598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,2.6645352591003757e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034087197717297575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1124.8272226039282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8554768225002395, dt = 0.00034087197717297575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 285.11 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,1.7763568394002505e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003246419322451155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 998.1707303330703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8558176944774125, dt = 0.0003246419322451155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 284.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003104197937245524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.4170557343749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8561423364096576, dt = 0.0003104197937245524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,2.6645352591003757e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029804082139416326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 900.0428934846318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8564527562033822, dt = 0.00029804082139416326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (0.9%)
patch tree reduce : 450.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 301.26 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,2.6645352591003757e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002873615262399206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3841900728609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8567507970247764, dt = 0.0002873615262399206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,3.552713678800501e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.000278257878739977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.5656069281772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8570381585510163, dt = 0.000278257878739977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027062372913474623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.0826245047066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8573164164297563, dt = 0.00027062372913474623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,2.6645352591003757e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026436942791670676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.5308082359102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8575870401588911, dt = 0.00026436942791670676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,3.552713678800501e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002594206352760591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.0909087419636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8578514095868078, dt = 0.0002594206352760591 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025571730895846675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.9024455917051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8581108302220839, dt = 0.00025571730895846675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002532128608728007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 752.8256546670856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8583665475310424, dt = 0.0002532128608728007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025187347378129193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.7900369193147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8586197603919151, dt = 0.00025187347378129193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 681.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 242.63 us (88.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025167757047309293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.8453289220361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8588716338656964, dt = 0.00025167757047309293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025261542893439173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.7823274810872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8591233114361695, dt = 0.00025261542893439173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002546889381597506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.7283840681984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8593759268651039, dt = 0.0002546889381597506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025791149038095827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.3058955128819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8596306158032636, dt = 0.00025791149038095827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002623080066056335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.2877188162921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8598885272936446, dt = 0.0002623080066056335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.000267915093444664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.2574887353445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8601508353002503, dt = 0.000267915093444664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002747813302531552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.8579008069065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.860418750393695, dt = 0.0002747813302531552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028296768660199755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.3034940882842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8606935317239481, dt = 0.00028296768660199755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,6.217248937900877e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002925480710238959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.9662042304449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8609764994105501, dt = 0.0002925480710238959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 228.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,6.217248937900877e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003036100128246476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 914.5993624787782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.861269047481574, dt = 0.0003036100128246476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 294.03 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.105427357601002e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003162554795010458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.2462419175812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8615726574943986, dt = 0.0003162554795010458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.105427357601002e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003306018329411701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.5532555003283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8618889129738997, dt = 0.0003306018329411701 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 267.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034678292807681534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 984.3335866230524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8622195148068409, dt = 0.00034678292807681534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,6.217248937900877e-15,0)
sum a = (5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003649503579820136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.5245325582482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8625662977349177, dt = 0.0003649503579820136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,5.329070518200751e-15,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003852748495303197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1107.6098160183926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8629312480928997, dt = 0.0003852748495303197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004079478135936295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1204.5872440529247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.86331652294243, dt = 0.0004079478135936295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043318305333521365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.1463449903533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8637244707560237, dt = 0.00043318305333521365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,5.329070518200751e-15,0)
sum a = (-2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046121863335790155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.7551875596528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8641576538093588, dt = 0.00046121863335790155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004923189112426751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1434.6530332281893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8646188724427167, dt = 0.0004923189112426751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005267767312686829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518.6018586997686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8651111913539594, dt = 0.0005267767312686829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,6.217248937900877e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005649157777450641 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1591.9019947226868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8656379680852281, dt = 0.0005649157777450641 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,7.105427357601002e-15,0)
sum a = (3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006070930822957578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1754.3408292542688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8662028838629732, dt = 0.0006070930822957578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.549516567451064e-15,0)
sum a = (-2.220446049250313e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006537016754934602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1842.0514470383762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.866809976945269, dt = 0.0006537016754934602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 262.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,7.993605777301127e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007051733682956272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1994.876625350375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8674636786207625, dt = 0.0007051733682956272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.549516567451064e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.000761981642636409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2148.4850268149794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8681688519890581, dt = 0.000761981642636409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.993605777301127e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.000824644623102465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2223.2745245205338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8689308336316945, dt = 0.000824644623102465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008937280926851778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2444.3370218676146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.869755478254797, dt = 0.0008937280926851778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 271.49 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.993605777301127e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009698485049669726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2520.194268202742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8706492063474822, dt = 0.0009698485049669726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010536759325739887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2978.0353649013746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8716190548524492, dt = 0.0010536759325739887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,8.43769498715119e-15,0)
sum a = (-7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011459368771272983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3102.275863330263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8726727307850232, dt = 0.0011459368771272983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,8.43769498715119e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012474168490854388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3530.2290870225734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8738186676621504, dt = 0.0012474168490854388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013589626066623345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3855.64837912675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8750660845112359, dt = 0.0013589626066623345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,8.215650382226158e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014814839213523685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4054.738809241522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8764250471178983, dt = 0.0014814839213523685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016159547135053069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4507.858551127506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8779065310392506, dt = 0.0016159547135053069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001763413374988518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4920.190947443337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8795224857527559, dt = 0.001763413374988518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019249620675252505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5503.2813168774055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8812858991277445, dt = 0.0019249620675252505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.993605777301127e-15,0)
sum a = (-7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021017647552769043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.017551778946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8832108611952697, dt = 0.0021017647552769043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022950436993666077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6320.9016254274975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8853126259505466, dt = 0.0022950436993666077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.002506074111353713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6954.613482299226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8876076696499132, dt = 0.002506074111353713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.66053886991358e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027361766335703996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7618.18562645629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.890113743761267, dt = 0.0027361766335703996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.002986707288567012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8422.921324832603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8928499203948373, dt = 0.002986707288567012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.003259044520026596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9029.604673664888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8958366276834043, dt = 0.003259044520026596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 288.32 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035545729362964885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9701.373914287464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8990956722034309, dt = 0.0035545729362964885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.003874663368623879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10520.776525167521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9026502451397274, dt = 0.003874663368623879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 274.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.771561172376096e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.004220648873333983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11705.469931150721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9065249085083512, dt = 0.004220648873333983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 270.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.716050021144838e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0045937963451524975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12706.897269091358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9107455573816852, dt = 0.0045937963451524975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 291.06 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,7.771561172376096e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.004995273472674685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13603.16490328298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9153393537268376, dt = 0.004995273472674685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.827072323607354e-15,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0054261108618837385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15151.106362517146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9203346271995123, dt = 0.0054261108618837385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 277.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.799316747991725e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.005887159284822534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15858.196110042489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.925760738061396, dt = 0.005887159284822534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.799316747991725e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.006379042182748809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17757.947906469493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9316478973462186, dt = 0.006379042182748809 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.827072323607354e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.006902103770046501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19418.188647089166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9380269395289673, dt = 0.006902103770046501 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.820133429703446e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.00745635334879246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21307.904479956953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9449290432990138, dt = 0.00745635334879246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,7.81839870622747e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.008041406753605653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22740.56507786612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9523853966478063, dt = 0.008041406753605653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.820133429703446e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.008656426198180337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24426.58061789885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.960426803401412, dt = 0.008656426198180337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 311.15 us (97.2%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.827072323607354e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.009300060180230836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24916.0162956818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9690832295995923, dt = 0.009300060180230836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,7.840950111415168e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.009970385506603644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28458.46446738136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9783832897798231, dt = 0.009970385506603644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 295.54 us (97.1%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,7.827072323607354e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010664853905097398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28975.606621034287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9883536752864268, dt = 0.010664853905097398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,7.799316747991725e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.011380246067629883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31977.933190033375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9990185291915242, dt = 0.011380246067629883 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 291.33 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,7.827072323607354e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012112636287993136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32225.825917180893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0103987752591541, dt = 0.012112636287993136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.827072323607354e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.012857371078222626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36717.01201301377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0225114115471472, dt = 0.012857371078222626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013609065228523851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37138.26665618372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.03536878262537, dt = 0.013609065228523851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.014361618673798255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41718.76036010054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0489778478538938, dt = 0.014361618673798255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015108257205163483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40467.3597473374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.063339466527692, dt = 0.015108257205163483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 236.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.015841599485468864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46389.76463714776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0784477237328556, dt = 0.015841599485468864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 291.56 us (97.0%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.827072323607354e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016553751975179495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45242.8616232823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0942893232183244, dt = 0.016553751975179495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 254.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.01723643224991772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49834.597266363315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.110843075193504, dt = 0.01723643224991772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 240.55 us (89.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017881119818635393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49386.131947817856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1280795074434216, dt = 0.017881119818635393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.01847923198523883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55286.42596352036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.145960627262057, dt = 0.01847923198523883 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.827072323607354e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.019022320619350414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54554.86190297165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.164439859247296, dt = 0.019022320619350414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.164135620181696e-15,7.827072323607354e-15,0)
sum a = (-4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.01950228402404675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57418.16966248678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1834621798666465, dt = 0.01950228402404675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 286.05 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.827072323607354e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.01991158654161868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56608.21262083736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2029644638906933, dt = 0.01991158654161868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.164135620181696e-15,7.827072323607354e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020243477265854112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60946.63262575872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.222876050432312, dt = 0.020243477265854112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.882583474838611e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020492198372088256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57540.48330399439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2431195276981661, dt = 0.020492198372088256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.882583474838611e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020653173257163555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62285.58100420774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2636117260702544, dt = 0.020653173257163555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2127078775090467e-15,7.93809462606987e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02072316498867306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61895.81865812167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.284264899327418, dt = 0.02072316498867306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 263.62 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.226585665316861e-15,7.993605777301127e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020700396535216794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60032.246921856226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.304988064316091, dt = 0.020700396535216794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2335245592207684e-15,7.93809462606987e-15,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02058462586587568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62172.16949916192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3256884608513078, dt = 0.02058462586587568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.247402347028583e-15,7.93809462606987e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02037717118294992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61933.69174933928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3462730867171835, dt = 0.02037717118294992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.7%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 384.06 us (97.6%)
LB move op cnt : 0
LB apply : 1.99 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.93809462606987e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020080884142604366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.397e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52511.71545664198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3666502579001334, dt = 0.020080884142604366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.93809462606987e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.01970007173091389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58227.96484420364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3867311420427377, dt = 0.01970007173091389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2751579226442118e-15,7.993605777301127e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019240370276503566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60236.11778385064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4064312137736517, dt = 0.019240370276503566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.993605777301127e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.01870857766886213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58908.66033123818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4256715840501553, dt = 0.01870857766886213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-02 |
+-----------+-----------+
Info: cfl dt = 0.018112452006590864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56762.99219900724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4443801617190173, dt = 0.018112452006590864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-02 |
+-----------+-----------+
Info: cfl dt = 0.017460486458075297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54283.253710241384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4624926137256082, dt = 0.017460486458075297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.016761670974019035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52158.39530364397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4799531001836836, dt = 0.016761670974019035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 257.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,8.049116928532385e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.016025251611965222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51099.755947510195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4967147711577027, dt = 0.016025251611965222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219646771412954e-15,8.104628079763643e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015260497652052916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48892.42124543186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.512740022769668, dt = 0.015260497652052916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,8.104628079763643e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-02 |
+-----------+-----------+
Info: cfl dt = 0.014476485496985053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46671.32057570164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5280005204217209, dt = 0.014476485496985053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,8.104628079763643e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013681906700083271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43126.92113916392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5424770059187058, dt = 0.013681906700083271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,8.104628079763643e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.01288490552306085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40123.74335095055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5561589126187891, dt = 0.01288490552306085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,8.104628079763643e-15,0)
sum a = (8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012092949366179549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37540.42296453766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.56904381814185, dt = 0.012092949366179549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,8.104628079763643e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.011312733402253772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35261.923606658944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5811367675080295, dt = 0.011312733402253772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3306690738754696e-15,8.104628079763643e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010550118920367257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33293.5265542492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5924495009102833, dt = 0.010550118920367257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3306690738754696e-15,8.104628079763643e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.009810103346907136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30865.09724535129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6029996198306504, dt = 0.009810103346907136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 266.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3306690738754696e-15,8.118505867571457e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.009096818722359564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29034.37790732518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6128097231775576, dt = 0.009096818722359564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 280.37 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,8.118505867571457e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.00841355459522328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25422.00253571032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.621906541899917, dt = 0.00841355459522328 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,8.115036420619504e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.007762800838690173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24552.85643409603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6303200964951403, dt = 0.007762800838690173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.774758283725532e-15,8.11156697366755e-15,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.007146305764680986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22830.703978070153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6380828973338304, dt = 0.007146305764680986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 246.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,8.118505867571457e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0065651450493145625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21077.421943198813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6452292030985114, dt = 0.0065651450493145625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,8.132383655379272e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.006019797330962416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19986.57289308631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6517943481478259, dt = 0.006019797330962416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,8.132383655379272e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.005510222832245191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17785.977060524336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6578141454787882, dt = 0.005510222832245191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,8.104628079763643e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.005035941930459775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16922.53806997598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6633243683110335, dt = 0.005035941930459775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.104628079763643e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.004596111204929965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15071.666351856828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6683603102414932, dt = 0.004596111204929965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.1601392309949e-15,0)
sum a = (-3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.004189595082872457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14093.276893574615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6729564214464232, dt = 0.004189595082872457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.47 us (95.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,7.993605777301127e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.003815031756705124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12063.071148398629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6771460165292957, dt = 0.003815031756705124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.104628079763643e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034708925348544686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11610.447391719103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.680961048286001, dt = 0.0034708925348544686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.215650382226158e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.003155534203761863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10042.486447878486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6844319408208555, dt = 0.003155534203761863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.215650382226158e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028672443171496873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9618.429521278978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6875874750246174, dt = 0.0028672443171496873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (0.5%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 526.24 us (98.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,8.215650382226158e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026042795915808626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.502e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6873.298779595259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6904547193417672, dt = 0.0026042795915808626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.43769498715119e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.002364897780779314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7792.4550111758535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.693058998933348, dt = 0.002364897780779314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.215650382226158e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002147383533361971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7045.037569204333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6954238967141273, dt = 0.002147383533361971 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.35 us (3.4%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.40 us (94.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,8.43769498715119e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019500688190420348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6227.358622272691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6975712802474894, dt = 0.0019500688190420348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,8.43769498715119e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017713485467095284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.109110241506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6995213490665315, dt = 0.0017713485467095284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.215650382226158e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016096920033465147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5385.706959311355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.701292697613241, dt = 0.0016096920033465147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,8.215650382226158e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.001463650723880114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4865.9926744631375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7029023896165876, dt = 0.001463650723880114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,8.215650382226158e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013318633660887515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4394.647337610048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7043660403404677, dt = 0.0013318633660887515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012130581176226316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3983.7384762992633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7056979037065565, dt = 0.0012130581176226316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011060531089584118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3594.2433162124753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7069109618241791, dt = 0.0011060531089584118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9968028886505635e-15,7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.001009755250462399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3192.4512386031706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7080170149331375, dt = 0.001009755250462399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,7.549516567451064e-15,0)
sum a = (-7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009231578564989031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3019.57793883344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7090267701836, dt = 0.0009231578564989031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-15,7.549516567451064e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008453373666801699 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2828.4081676840187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.709949928040099, dt = 0.0008453373666801699 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,7.549516567451064e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007754494252263198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2601.756313964121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.710795265406779, dt = 0.0007754494252263198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,7.549516567451064e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007127245347672587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2398.120010733529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7115707148320054, dt = 0.0007127245347672587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,7.105427357601002e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006564634611426646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2154.863018379122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7122834393667727, dt = 0.0006564634611426646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,6.661338147750939e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006060325309066982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1957.2294643561277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7129399028279153, dt = 0.0006060325309066982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,6.217248937900877e-15,0)
sum a = (7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005608589331729506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1853.2616888818875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.713545935358822, dt = 0.0005608589331729506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,7.105427357601002e-15,0)
sum a = (-1.4210854715202004e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005204261118517519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1680.3279605982511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.714106794291995, dt = 0.0005204261118517519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004842693128595096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1611.4716487342043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7146272204038466, dt = 0.0004842693128595096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (-2.842170943040401e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045197133309736074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1450.6838955747578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7151114897167061, dt = 0.00045197133309736074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004231585034702317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.9968894249394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7155634610498034, dt = 0.0004231585034702317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003974969265223752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1318.1583953468423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7159866195532736, dt = 0.0003974969265223752 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037468897999967264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1206.0711406103987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.716384116479796, dt = 0.00037468897999967264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.993605777301127e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003544700904426375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1162.4280338045978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7167588054597955, dt = 0.0003544700904426375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003366057754339299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1101.7464574364622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.717113275550238, dt = 0.0003366057754339299 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,7.993605777301127e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.21e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003208889490754521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.7% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 978.0826206073343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.717449881325672, dt = 0.0003208889490754521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030713748239554275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 979.9764987831967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7177707702747476, dt = 0.00030713748239554275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.105427357601002e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002951920084652161 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.0134071622673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.718077907757143, dt = 0.0002951920084652161 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002849139608455687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.9610451162424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7183730997656084, dt = 0.0002849139608455687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.000276183833438139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 892.2156848118756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.718658013726454, dt = 0.000276183833438139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002688996497343039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 858.5173323696699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7189341975598922, dt = 0.0002688996497343039 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 282.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026297562975005726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.4514458611359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7192030972096264, dt = 0.00026297562975005726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002583410434999054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.8656598939439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7194660728393765, dt = 0.0002583410434999054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.54 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,4.440892098500626e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025493924063627776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.0390527309153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7197244138828764, dt = 0.00025493924063627776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6653345369377348e-15,3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002527268468010561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.420353692483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7199793531235128, dt = 0.0002527268468010561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6653345369377348e-15,4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025167311825763003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.1736664177863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.720232079970314, dt = 0.00025167311825763003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.672273430841642e-15,3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025175944745892045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.8834935388686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7204837530885715, dt = 0.00025175944745892045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002529790133303462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.9509307173581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7207355125360304, dt = 0.0002529790133303462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025533657118404987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.671587548032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7209884915493607, dt = 0.00025533657118404987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002588483783136189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.470e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625.1069586215856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7212438281205449, dt = 0.0002588483783136189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026354225243207586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 810.8452400016602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7215026764988586, dt = 0.00026354225243207586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 288.82 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,2.6645352591003757e-15,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026945776119711756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.0443389239333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7217662187512905, dt = 0.00026945776119711756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,2.6645352591003757e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002766465421045355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 819.6413023960422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7220356765124876, dt = 0.0002766465421045355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,2.6645352591003757e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028517275301156536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.5707987711204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.722312323054592, dt = 0.00028517275301156536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,2.6645352591003757e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029511365446380407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 887.4034028001407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7225974958076036, dt = 0.00029511365446380407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,1.7763568394002505e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030656032582775973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.3972699181153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7228926094620673, dt = 0.00030656032582775973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,1.7763568394002505e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003196185179588474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.9870774290238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.723199169787895, dt = 0.0003196185179588474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,8.881784197001252e-16,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003344096457409258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.317069246092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7235187883058538, dt = 0.0003344096457409258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,8.881784197001252e-16,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035107192429299875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.4063778085572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7238531979515948, dt = 0.00035107192429299875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036976165292066136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.8% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9841831301496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7242042698758877, dt = 0.00036976165292066136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039065465095691293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1169.805838663436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7245740315288083, dt = 0.00039065465095691293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004139478494440292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1180.4860786199763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7249646861797652, dt = 0.0004139478494440292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043986104210141295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.7921354423727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7253786340292092, dt = 0.00043986104210141295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004686387981397844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1359.3112634987629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7258184950713107, dt = 0.0004686387981397844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005005525381444807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1435.1613957614827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7262871338694505, dt = 0.0005005525381444807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 350.70 us (97.5%)
LB move op cnt : 0
LB apply : 1.76 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005359027723722782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.0299595959514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.726787686407595, dt = 0.0005359027723722782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,8.881784197001252e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005750214982856707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1618.3924043059274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7273235891799674, dt = 0.0005750214982856707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.74 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006182747508700277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1728.6240198178202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.727898610678253, dt = 0.0006182747508700277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006660652951114083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1818.6527646648692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.728516885429123, dt = 0.0006660652951114083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 601.00 ns (0.3%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,4.440892098500626e-16,0)
sum a = (-3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007188354448096141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1977.095335367515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7291829507242344, dt = 0.0007188354448096141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007770699855009458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2131.270317807404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.729901786169044, dt = 0.0007770699855009458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008412991714935182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2435.3898456240186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.730678856154545, dt = 0.0008412991714935182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,4.440892098500626e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009121017576893458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2612.12643848443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7315201553260384, dt = 0.0009121017576893458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,0,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009901080157902686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.961501228285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7324322570837278, dt = 0.0009901080157902686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 237.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum a = (1.4210854715202004e-14,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010760026714676505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3019.9621587196275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7334223650995182, dt = 0.0010760026714676505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001170527683937035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3363.7551568884833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7344983677709858, dt = 0.001170527683937035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012744847719591455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.368e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3079.644891222018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7356688954549229, dt = 0.0012744847719591455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-8.881784197001252e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013887375704675162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3864.420392387066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.736943380226882, dt = 0.0013887375704675162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.1102230246251565e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.001514213279741368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896.9132722930126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7383321177973496, dt = 0.001514213279741368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016519036443287745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4661.564108916067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.739846331077091, dt = 0.0016519036443287745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 281.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018028650719307308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4934.562221731021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7414982347214198, dt = 0.0018028650719307308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019682176734945388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5696.8061327235655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7433010997933507, dt = 0.0019682176734945388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021491429753587145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6034.263982269445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7452693174668452, dt = 0.0021491429753587145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002346880023229722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6653.498875412459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7474184604422038, dt = 0.002346880023229722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002562719567166909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7176.326462274622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7497653404654336, dt = 0.002562719567166909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.771561172376096e-16,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.002797995988109383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7998.736300834981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7523280600326006, dt = 0.002797995988109383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.771561172376096e-16,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.003054076601754525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8709.85069996228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.75512605602071, dt = 0.003054076601754525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-7.771561172376096e-16,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.003332347957264551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9015.058967617224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7581801326224646, dt = 0.003332347957264551 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.003634198739369011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 1.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9878.58319498051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.761512480579729, dt = 0.003634198739369011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.003960998886570298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11074.91262952864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7651466793190982, dt = 0.003960998886570298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-7.771561172376096e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.004314074559549369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12156.176332339393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7691076782056685, dt = 0.004314074559549369 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.326672684688674e-16,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046946786372345445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.343e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11564.51419170483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7734217527652179, dt = 0.0046946786372345445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-8.326672684688674e-16,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.005103956488458174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14681.678087728083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7781164314024525, dt = 0.005103956488458174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 276.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.84 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-8.326672684688674e-16,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.005542906869984947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15326.813108154973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7832203878909105, dt = 0.005542906869984947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.049116928532385e-16,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.00601233794211178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17411.938629403106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7887632947608956, dt = 0.00601233794211178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.049116928532385e-16,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0065128185755814515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17026.022781898522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7947756327030073, dt = 0.0065128185755814515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.049116928532385e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.00704462535161383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20217.11042865009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8012884512785887, dt = 0.00704462535161383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.049116928532385e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.007607685931927467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21778.76338772141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8083330766302026, dt = 0.007607685931927467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-8.083811398051921e-16,0)
sum a = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.008201519796432051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24038.399195087357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.81594076256213, dt = 0.008201519796432051 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-8.118505867571457e-16,0)
sum a = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.008825177707848707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24739.575623260094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.824142282358562, dt = 0.008825177707848707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.049116928532385e-16,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.009477181655220553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27415.993072579156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8329674600664108, dt = 0.009477181655220553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-8.049116928532385e-16,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010155467436907872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28338.73560655021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8424446417216314, dt = 0.010155467436907872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-8.049116928532385e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.010857332446769985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30913.33180529872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8526001091585393, dt = 0.010857332446769985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-8.049116928532385e-16,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-02 |
+-----------+-----------+
Info: cfl dt = 0.01157939159681893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31278.751302098597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8634574416053094, dt = 0.01157939159681893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.771561172376096e-16,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.01231754461141046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35881.54006461577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8750368332021283, dt = 0.01231754461141046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-7.771561172376096e-16,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.013066958122511848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38330.85154386742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8873543778135389, dt = 0.013066958122511848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.326672684688674e-16,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-02 |
+-----------+-----------+
Info: cfl dt = 0.013822066040035512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40672.120541247605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9004213359360507, dt = 0.013822066040035512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.326672684688674e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014576591522805092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42174.912376839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9142434019760861, dt = 0.014576591522805092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.326672684688674e-16,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-02 |
+-----------+-----------+
Info: cfl dt = 0.015323593495625678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44538.444254597925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9288199934988912, dt = 0.015323593495625678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.326672684688674e-16,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-02 |
+-----------+-----------+
Info: cfl dt = 0.016055540016517034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46301.177976051134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.944143586994517, dt = 0.016055540016517034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.016764409880650616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50092.77056575534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.960199127011034, dt = 0.016764409880650616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.01744182265970077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51286.91359281259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9769635368916845, dt = 0.01744182265970077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,-8.326672684688674e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-02 |
+-----------+-----------+
Info: cfl dt = 0.018079195948513635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52530.556024916244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9944053595513853, dt = 0.018079195948513635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,-7.771561172376096e-16,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.01866792698537701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55339.3952040536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.012484555499899, dt = 0.01866792698537701 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 277.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-8.326672684688674e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019199594117355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53099.00015277355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0311524824852762, dt = 0.019199594117355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-8.881784197001252e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019666171914331797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58726.32784672206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.050352076602631, dt = 0.019666171914331797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 274.81 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-9.992007221626409e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020060252230477853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56087.17091854122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0700182485169627, dt = 0.020060252230477853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.43689570931383e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02037526231444955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63037.29155840257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0900785007474405, dt = 0.02037526231444955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-9.43689570931383e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020605670318815713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61203.82181616426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1104537630618903, dt = 0.020605670318815713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,-9.43689570931383e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020747168372068234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63259.2156410367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.131059433380706, dt = 0.020747168372068234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-9.43689570931383e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020796823831854168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63381.151029338056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1518066017527744, dt = 0.020796823831854168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-9.43689570931383e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020753190462111243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62904.98182608166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1726034255846285, dt = 0.020753190462111243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-8.881784197001252e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020616373034378046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62162.856342341096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.19335661604674, dt = 0.020616373034378046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.43689570931383e-16,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020388041145583912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63020.673422050044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.213972989081118, dt = 0.020388041145583912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-8.881784197001252e-16,0)
sum a = (-4.440892098500626e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020071390713858578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 1.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63183.84778438612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.234361030226702, dt = 0.020071390713858578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-9.43689570931383e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.01967105445868006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59732.28195688854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2544324209405606, dt = 0.01967105445868006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,-9.43689570931383e-16,0)
sum a = (8.881784197001252e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019192965466285166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58137.372310000275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2741034753992406, dt = 0.019192965466285166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,-8.881784197001252e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018644180460290267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60606.600118789844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2932964408655256, dt = 0.018644180460290267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.01803267144079535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58117.819838307696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.311940621325816, dt = 0.01803267144079535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.771561172376096e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.017367095770028686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52659.78775255096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3299732927666112, dt = 0.017367095770028686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.3%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,-7.216449660063518e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-02 |
+-----------+-----------+
Info: cfl dt = 0.01665655547904756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.581e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39535.74144574009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3473403885366397, dt = 0.01665655547904756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-02 |
+-----------+-----------+
Info: cfl dt = 0.01591035652887199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46777.6383583027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.363996944015687, dt = 0.01591035652887199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.106226635438361e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015137778030294495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49355.737061332366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3799073005445592, dt = 0.015137778030294495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.106226635438361e-16,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014347860117969208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46623.40573386791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.395045078574854, dt = 0.014347860117969208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-6.106226635438361e-16,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013549217437272403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42210.693029284776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.409392938692823, dt = 0.013549217437272403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-6.38378239159465e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012749883210548315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41630.1232198046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4229421561300954, dt = 0.012749883210548315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.661338147750939e-16,0)
sum a = (-8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.011957186778754063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39949.22273068401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4356920393406436, dt = 0.011957186778754063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.661338147750939e-16,0)
sum a = (-8.881784197001252e-16,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.01117766552554504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36623.6265065747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4476492261193976, dt = 0.01117766552554504 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 270.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.661338147750939e-16,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010417010314475644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33459.99801430058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4588268916449425, dt = 0.010417010314475644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.38378239159465e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.009680042099591188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32713.230566681163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4692439019594183, dt = 0.009680042099591188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.38378239159465e-16,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00897071625831808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29401.892079231777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4789239440590096, dt = 0.00897071625831808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.38378239159465e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.008292150458176821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28025.338577709685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4878946603173278, dt = 0.008292150458176821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-6.440160904563896e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.007646671488130177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25787.079094279794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4961868107755047, dt = 0.007646671488130177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.522560269672795e-16,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.007035876419767805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21908.00153857983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.503833482263635, dt = 0.007035876419767805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.6%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 420.37 us (97.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.522560269672795e-16,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0064607036559737475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.390e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18222.59728599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.510869358683403, dt = 0.0064607036559737475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.38378239159465e-16,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.005921509811050946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19056.2334949628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5173300623393766, dt = 0.005921509811050946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 432.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.38378239159465e-16,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.005418148882266448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17580.432998932352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5232515721504276, dt = 0.005418148882266448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.106226635438361e-16,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.004950050759522101 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17024.0322095244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5286697210326943, dt = 0.004950050759522101 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 285.27 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.00451629672724627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14443.507364961935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.533619771792216, dt = 0.00451629672724627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.004115690201132195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13814.82557403906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5381360685194623, dt = 0.004115690201132195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037468214834462774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12823.129277836255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5422517587205946, dt = 0.0037468214834462774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.661338147750939e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034081257959588203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11255.002161464055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.545998580204041, dt = 0.0034081257959588203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030979342496224947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10660.646581479192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5494067059999996, dt = 0.0030979342496224947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 264.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-6.661338147750939e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028145177325710493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9198.779358098327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.552504640249622, dt = 0.0028145177325710493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 255.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-7.771561172376096e-16,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002556123945772403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8557.99498565887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.555319157982193, dt = 0.002556123945772403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-6.661338147750939e-16,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023210079952982955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7854.389973182071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5578752819279655, dt = 0.0023210079952982955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002107457070359046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7128.153604265705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.560196289923264, dt = 0.002107457070359046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-6.661338147750939e-16,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019138098066426683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6444.653133745684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.562303746993623, dt = 0.0019138098066426683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-6.661338147750939e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017384709647967026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5978.403365323832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5642175568002656, dt = 0.0017384709647967026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-6.661338147750939e-16,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.00157992205323974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5253.646305377493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.565956027765062, dt = 0.00157992205323974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-6.661338147750939e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014367285010762466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 2.2% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4915.652295219071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5675359498183017, dt = 0.0014367285010762466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 265.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-4.440892098500626e-16,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013075439477478526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4369.789431068514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.568972678319378, dt = 0.0013075439477478526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-4.440892098500626e-16,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001191112167006984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3989.607377086396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.570280222267126, dt = 0.001191112167006984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 292.67 us (97.1%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010862670884879168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3579.5141458509993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.571471334434133, dt = 0.0010862670884879168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-1.3322676295501878e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009919313241426792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3234.7294868656586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5725576015226213, dt = 0.0009919313241426792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 272.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-1.3322676295501878e-15,0)
sum a = (7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.000907113551730043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3005.3187244636224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.573549532846764, dt = 0.000907113551730043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 247.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008309050552274159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2752.563905086831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.574456646398494, dt = 0.0008309050552274159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-1.3322676295501878e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.000762475673664939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.6112228944357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5752875514537212, dt = 0.000762475673664939 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-1.3322676295501878e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007010693661377693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2364.4896804983937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.576050027127386, dt = 0.0007010693661377693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,-8.881784197001252e-16,0)
sum a = (-1.7763568394002505e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006459995619292439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164.594185691017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5767510964935236, dt = 0.0006459995619292439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,-8.881784197001252e-16,0)
sum a = (-7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005966444307847337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2009.149361855577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.577397096055453, dt = 0.0005966444307847337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 236.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,-8.881784197001252e-16,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005524421792265301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1824.397684954394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5779937404862374, dt = 0.0005524421792265301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.80 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.552713678800501e-15,0,0)
sum a = (-1.4210854715202004e-14,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.000512886454078153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1665.9603773351296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.578546182665464, dt = 0.000512886454078153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047752191368023174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1590.6333054913898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.579059069119542, dt = 0.00047752191368023174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,0,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044594001020141564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1419.3961107927234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5795365910332224, dt = 0.00044594001020141564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004177750125412975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1343.132118131457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5799825310434237, dt = 0.0004177750125412975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 510.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039270028816523533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1258.2384588055281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.580400306055965, dt = 0.00039270028816523533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037042485340632293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1189.39816473037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5807930063441304, dt = 0.00037042485340632293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035069019495411954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1134.3713053043873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.581163431197537, dt = 0.00035069019495411954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (-1.1368683772161603e-13,2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003332673600971488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.314e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.6963529887189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.581514121392491, dt = 0.0003332673600971488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031795430950911404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 930.467517812081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.581847388752588, dt = 0.00031795430950911404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 480.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003045735237173746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.1259872142001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.582165343062097, dt = 0.0003045735237173746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 472.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 269.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002929698526520425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 875.0988142348791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5824699165858145, dt = 0.0002929698526520425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002830085966632047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 880.1637913588138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5827628864384664, dt = 0.0002830085966632047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002745738069595936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.2187109883724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.58304589503513, dt = 0.0002745738069595936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-8.881784197001252e-16,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026756679343770357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.8409424674174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.583320468842089, dt = 0.00026756679343770357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,0,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026190482823153655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.6255515766561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5835880356355267, dt = 0.00026190482823153655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,0,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002575200339347854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.3232299284458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5838499404637583, dt = 0.0002575200339347854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025435844626062995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.8187168796962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5841074604976932, dt = 0.00025435844626062995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6653345369377348e-15,-8.881784197001252e-16,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025237924185436797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.4946245798883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.584361818943954, dt = 0.00025237924185436797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4988010832439613e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515541230170961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 758.0214522395064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5846141981858084, dt = 0.0002515541230170961 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4988010832439613e-15,-1.7763568394002505e-15,0)
sum a = (-2.2737367544323206e-13,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002518668521999876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.1244969993091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5848657523088256, dt = 0.0002518668521999876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4988010832439613e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025331293026112345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 749.0383563992748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5851176191610254, dt = 0.00025331293026112345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5543122344752192e-15,-1.7763568394002505e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025589941361870984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.9634074602427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5853709320912865, dt = 0.00025589941361870984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-2.6645352591003757e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002596448665684872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.5402891679107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5856268315049054, dt = 0.0002596448665684872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026457944614481334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.4417556774019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5858864763714737, dt = 0.00026457944614481334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027074511798171535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.0700914165611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5861510558176186, dt = 0.00027074511798171535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027819600266038307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.0552674628735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5864218009356, dt = 0.00027819600266038307 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028699885300121405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.4009438204026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5866999969382607, dt = 0.00028699885300121405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002972336636586138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 861.476114040458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.586986995791262, dt = 0.0002972336636586138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003089944151904002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.8684192989298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5872842294549203, dt = 0.0003089944151904002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003223899554830452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.8400632074279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.587593223870111, dt = 0.0003223899554830452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-7.105427357601002e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.000337545021997606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.4965386571158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.587915613825594, dt = 0.000337545021997606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035460140873279513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.8587958532181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.588253158847592, dt = 0.00035460140873279513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-15,0)
sum a = (-1.1368683772161603e-13,-2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037371928204926806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.522395838486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5886077602563247, dt = 0.00037371928204926806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003950786495241272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1133.8971809760703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.588981479538374, dt = 0.0003950786495241272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (-5.684341886080802e-14,-2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041888098576023657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1196.5916028837482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.589376558187898, dt = 0.00041888098576023657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044535101850544465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1267.8496920167274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.589795439173658, dt = 0.00044535101850544465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047473867747622935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1360.8407701445162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5902407901921634, dt = 0.00047473867747622935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-7.993605777301127e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.000507321206850956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1435.2121495142162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5907155288696395, dt = 0.000507321206850956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-7.993605777301127e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.000543405440409556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1567.703997520525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5912228500764907, dt = 0.000543405440409556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005833302356447879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1622.3573518235428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5917662555169003, dt = 0.0005833302356447879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006274690597363264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1683.530533250094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.592349585752545, dt = 0.0006274690597363264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (8.881784197001252e-16,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006762327159285436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1916.8579079597864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5929770548122817, dt = 0.0006762327159285436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007300721934362383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1997.6873806795484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5936532875282103, dt = 0.0007300721934362383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007894816173553969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2250.871952241749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.594383359721647, dt = 0.0007894816173553969 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 251.49 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008550012670007599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2260.5974015325755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5951728413390023, dt = 0.0008550012670007599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009272206214409351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.079125328761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.596027842606003, dt = 0.0009272206214409351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010067813795620417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2701.7617631149524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.596955063227444, dt = 0.0010067813795620417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010943803885710903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931.848728037584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5979618446070063, dt = 0.0010943803885710903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 500.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 266.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (-7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001190772399270745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3123.511507210997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5990562249955773, dt = 0.001190772399270745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012967725485430023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3605.966878735636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.600246997394848, dt = 0.0012967725485430023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014132584491585388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3784.1532268497376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6015437699433908, dt = 0.0014132584491585388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015411717442342355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4092.434079178268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.602957028392549, dt = 0.0015411717442342355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.00168151895844081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4520.695774556889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6044982001367836, dt = 0.00168151895844081 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018353714505915774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5051.165483496671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6061797190952243, dt = 0.0018353714505915774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002003864242868995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5389.956301839831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6080150905458157, dt = 0.002003864242868995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021881934712346617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6040.880932997133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6100189547886847, dt = 0.0021881934712346617 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 255.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.002389612170363703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6385.229946555161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.612207148259919, dt = 0.002389612170363703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.103828801926284e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026094240759261937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7057.2843694906915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.614596760430283, dt = 0.0026094240759261937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 272.11 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.2148511043888e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.002848975098789198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7631.00440474557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.617206184506209, dt = 0.002848975098789198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.103828801926284e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031096421017827976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8589.50058761353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.620055159604998, dt = 0.0031096421017827976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.103828801926284e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.003392818592638057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9016.279306818376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6231648017067806, dt = 0.003392818592638057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.2148511043888e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036998969397109608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10030.126917679881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6265576202994185, dt = 0.0036998969397109608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.2148511043888e-15,0)
sum a = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.004032246723893847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10876.016476937597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6302575172391296, dt = 0.004032246723893847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.2148511043888e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.00439118886500111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12456.013109812226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6342897639630234, dt = 0.00439118886500111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 268.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.270362255620057e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.004777965208723566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12601.821933863921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6386809528280244, dt = 0.004777965208723566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 232.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.005193703336167655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.525e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11281.298473349198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.643458918036748, dt = 0.005193703336167655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-9.270362255620057e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.005639376467358275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15481.037998706328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6486526213729156, dt = 0.005639376467358275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-9.270362255620057e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.006115758478004546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16721.80151742565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6542919978402737, dt = 0.006115758478004546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-9.242606680004428e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0066233742397401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18446.40951313883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6604077563182784, dt = 0.0066233742397401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.256484467812243e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.007162445731090747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19991.755894038946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6670311305580183, dt = 0.007162445731090747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 270.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.256484467812243e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.007732834650678699 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21480.302394238126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.674193576289109, dt = 0.007732834650678699 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.249545573908335e-15,0)
sum a = (-1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.008333982593804341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23106.42484901278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.681926410939788, dt = 0.008333982593804341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.249545573908335e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.008964850222828488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26063.560020306817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6902603935335923, dt = 0.008964850222828488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.242606680004428e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.00962385726013387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25951.55757152804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6992252437564206, dt = 0.00962385726013387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.242606680004428e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010308825543571232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29785.89961216297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7088491010165545, dt = 0.010308825543571232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.270362255620057e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.011016927785530881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30581.970730435343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7191579265601256, dt = 0.011016927785530881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.270362255620057e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-02 |
+-----------+-----------+
Info: cfl dt = 0.011744645038882787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34356.68079355569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7301748543456563, dt = 0.011744645038882787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.270362255620057e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-02 |
+-----------+-----------+
Info: cfl dt = 0.012487736160569104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35291.90206579142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7419194993845393, dt = 0.012487736160569104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.242606680004428e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-02 |
+-----------+-----------+
Info: cfl dt = 0.013241222736208933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37570.69196965048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7544072355451084, dt = 0.013241222736208933 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.0%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 302.78 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.270362255620057e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-02 |
+-----------+-----------+
Info: cfl dt = 0.013999392943504859 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38530.756002780705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7676484582813172, dt = 0.013999392943504859 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.2148511043888e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-02 |
+-----------+-----------+
Info: cfl dt = 0.014755827645857728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43616.684967963265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.781647851224822, dt = 0.014755827645857728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.2148511043888e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-02 |
+-----------+-----------+
Info: cfl dt = 0.015503451582617789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45608.447302340835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.79640367887068, dt = 0.015503451582617789 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.270362255620057e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.016234611831195896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48023.78428993028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8119071304532977, dt = 0.016234611831195896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.0169411847471253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49390.695431386834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8281417422844934, dt = 0.0169411847471253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3314683517128287e-15,-9.270362255620057e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-02 |
+-----------+-----------+
Info: cfl dt = 0.017614711351010462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53269.51269949434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8450829270316187, dt = 0.017614711351010462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.2148511043888e-15,0)
sum a = (-8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018246559662402642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53153.71011972032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8626976383826293, dt = 0.018246559662402642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-02 |
+-----------+-----------+
Info: cfl dt = 0.01882811084556528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56234.3890481066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.880944198045032, dt = 0.01882811084556528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.2148511043888e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-02 |
+-----------+-----------+
Info: cfl dt = 0.01935096432575385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56447.92362595709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.899772308890597, dt = 0.01935096432575385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.275957200481571e-15,-9.2148511043888e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.01980715537776693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58466.641913200634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.919123273216351, dt = 0.01980715537776693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.275957200481571e-15,-9.159339953157541e-15,0)
sum a = (4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020189377220021166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60617.190734871736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9389304285941176, dt = 0.020189377220021166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 247.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.103828801926284e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020491198512686295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62312.83923117024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.959119805814139, dt = 0.020491198512686295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.248201624865942e-15,-9.103828801926284e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020707266494558577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64321.14628505344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.979611004326825, dt = 0.020707266494558577 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 274.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2343238370581275e-15,-9.103828801926284e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020833485912462712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61468.339807901226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0003182708213836, dt = 0.020833485912462712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2239154962022667e-15,-9.048317650695026e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020867164469955072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62490.35512997545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0211517567338464, dt = 0.020867164469955072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2343238370581275e-15,-9.048317650695026e-15,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020807116765227448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63296.22219531057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0420189212038014, dt = 0.020807116765227448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (8.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.048317650695026e-15,0)
sum a = (-4.440892098500626e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020653720554865553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61632.40416207103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0628260379690286, dt = 0.020653720554865553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.192690473634684e-15,-9.103828801926284e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020408921560216474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64923.79682312805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.083479758523894, dt = 0.020408921560216474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.103828801926284e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020076185759707987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62628.975245585374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1038886800841103, dt = 0.020076185759707987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 275.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (4.440892098500626e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019660400975186936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60582.96763981688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1239648658438184, dt = 0.019660400975186936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019167732334721084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60162.442345649004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1436252668190052, dt = 0.019167732334721084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018605438654569956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55818.81766542759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1627929991537265, dt = 0.018605438654569956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.017981658734956676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56529.29165470484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1813984378082965, dt = 0.017981658734956676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3314683517128287e-15,-9.159339953157541e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.01730517786440497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55020.676276641934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.199380096543253, dt = 0.01730517786440497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3314683517128287e-15,-9.270362255620057e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.01658518539756908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54312.763177983135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.216685274407658, dt = 0.01658518539756908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,-9.2148511043888e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01583103410470546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50606.80482215321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.233270459805227, dt = 0.01583103410470546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3314683517128287e-15,-9.2148511043888e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015052011148243893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49083.827352223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2491014939099325, dt = 0.015052011148243893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.2148511043888e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014257129141031138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.439e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37650.70961457163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2641535050581765, dt = 0.014257129141031138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.2148511043888e-15,0)
sum a = (8.881784197001252e-16,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013454943938895977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44280.73311182075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2784106341992074, dt = 0.013454943938895977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9984014443252818e-15,-9.18709552877317e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012653403793544665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40937.20213115165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.291865578138103, dt = 0.012653403793544665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,-9.159339953157541e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011859732415725903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39410.14339803382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.304518981931648, dt = 0.011859732415725903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4424906541753444e-15,-9.159339953157541e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011080346529873041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35224.42854435515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3163787143473735, dt = 0.011080346529873041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.159339953157541e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010320806765450198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33101.104669628265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3274590608772465, dt = 0.010320806765450198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 289.43 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (71.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.159339953157541e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.00958579931376061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28997.274971530005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3377798676426966, dt = 0.00958579931376061 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.886579864025407e-15,-9.173217740965356e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.008879144728360659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29869.56635313554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.347365666956457, dt = 0.008879144728360659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.180156634869263e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.008203829571322006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26880.184652649277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.356244811684818, dt = 0.008203829571322006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.18189135834524e-15,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.007562056284127407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24641.26357411808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3644486412561396, dt = 0.007562056284127407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.20 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.173217740965356e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.006955306645865034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22875.559421425434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.372010697540267, dt = 0.006955306645865034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.173217740965356e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.006384414413471181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21358.208853152893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.378966004186132, dt = 0.006384414413471181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-9.159339953157541e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.005849643154124249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19659.037510496088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3853504185996033, dt = 0.005849643154124249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.159339953157541e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0053507658146048605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 2.4% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18146.57167845975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3912000617537275, dt = 0.0053507658146048605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.159339953157541e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.004887143168680565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16456.59483748448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3965508275683325, dt = 0.004887143168680565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.2148511043888e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.004457798892804382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14672.776453165478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.401437970737013, dt = 0.004457798892804382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,-9.2148511043888e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00406148960488232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13788.831180496196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4058957696298173, dt = 0.00406148960488232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.2148511043888e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036967687337468927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12110.233085830816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4099572592347, dt = 0.0036967687337468927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,-9.325873406851315e-15,0)
sum a = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.003362043551527665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11624.54104637967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.413654027968447, dt = 0.003362043551527665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,-9.43689570931383e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030556250891926864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10222.395182363907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4170160715199747, dt = 0.0030556250891926864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 225.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1086244689504383e-15,-9.43689570931383e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027757709658348573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9562.441601840876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4200716966091673, dt = 0.0027757709658348573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002520721398503824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8292.326191249324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4228474675750022, dt = 0.002520721398503824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.00228872882859632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7865.94025313743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.425368188973506, dt = 0.00228872882859632 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 280.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020780817119935417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6725.1214589202245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.427656917802102, dt = 0.0020780817119935417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018871230830298862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6359.154834823648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4297349995140958, dt = 0.0018871230830298862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.17 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017142645266792172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5819.703995802115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4316221225971257, dt = 0.0017142645266792172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-9.103828801926284e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015579961880885856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5381.771126928931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4333363871238047, dt = 0.0015579961880885856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-8.881784197001252e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014168934218059344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4758.515664180482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4348943833118932, dt = 0.0014168934218059344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6645352591003757e-15,-8.881784197001252e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012896206415900033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4234.019399082414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.436311276733699, dt = 0.0012896206415900033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-15,-8.881784197001252e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011749328811898614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3873.3485535111604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.437600897375289, dt = 0.0011749328811898614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010716755214028016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3599.4053172835793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.438775830256479, dt = 0.0010716755214028016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.000978782582467493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3351.3657067692907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4398475057778817, dt = 0.000978782582467493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.43769498715119e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008952739259096485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3058.9531383137073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4408262883603493, dt = 0.0008952739259096485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008202516580450055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2743.419878069004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.441721562286259, dt = 0.0008202516580450055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-8.881784197001252e-15,0)
sum a = (3.552713678800501e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007528959795518104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2553.041024570685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4425418139443043, dt = 0.0007528959795518104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006924606824571333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2284.6433914518166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.443294709923856, dt = 0.0006924606824571333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.325873406851315e-15,0)
sum a = (-1.7763568394002505e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006382684577751658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1865.5824695979452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.443987170606313, dt = 0.0006382684577751658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 239.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005897061438605176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1911.1630151457987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.444625439064088, dt = 0.0005897061438605176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005462200170801109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1784.3538394473676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4452151452079485, dt = 0.0005462200170801109 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005073112023292323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1666.8506630796674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4457613652250285, dt = 0.0005073112023292323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7763568394002505e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004725312608179454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1561.8559465275634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4462686764273576, dt = 0.0004725312608179454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004414779960002311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1421.352074230113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4467412076881754, dt = 0.0004414779960002311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-7.993605777301127e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004137915050735341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1314.6725443588289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4471826856841754, dt = 0.0004137915050735341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038915049272000965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.8570842520166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.447596477189249, dt = 0.00038915049272000965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036726885529945064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1186.3862019430399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4479856276819687, dt = 0.00036726885529945064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003478925371791202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1126.2892791028503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4483528965372683, dt = 0.0003478925371791202 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0658141036401503e-14,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033079665597687873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.1174295450278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.448700789074447, dt = 0.00033079665597687873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.1546319456101628e-14,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031578288991923804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 970.391990173397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.449031585730424, dt = 0.00031578288991923804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-1.2434497875801753e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003026771180307116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 982.2309654438432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.449347368620343, dt = 0.0003026771180307116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-1.2434497875801753e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029132730226583657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 943.9257021249391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4496500457383736, dt = 0.00029132730226583657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 6.48 us (2.4%)
gen split merge : 550.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.86 us (94.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-1.1546319456101628e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002816015997932164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 897.1623387242987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4499413730406396, dt = 0.0002816015997932164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-1.1546319456101628e-14,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027338669329348374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 869.3494316670489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.450222974640433, dt = 0.00027338669329348374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 228.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-1.2434497875801753e-14,0)
sum a = (2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.000266586327217083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.2636649375656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4504963613337263, dt = 0.000266586327217083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-1.2434497875801753e-14,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002611200383621062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.3497587206499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.450762947660943, dt = 0.0002611200383621062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-15,-1.1546319456101628e-14,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.000256922069794812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.4761184287448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.451024067699305, dt = 0.000256922069794812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.992007221626409e-16,-1.2434497875801753e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025394045797955215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.5199554594267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4512809897691, dt = 0.00025394045797955215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.992007221626409e-16,-1.3322676295501878e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002521362839575497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.9617606627056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.45153493022708, dt = 0.0002521362839575497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.992007221626409e-16,-1.4210854715202004e-14,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025148308047320237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.5825934521387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4517870665110375, dt = 0.00025148308047320237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 243.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.43689570931383e-16,-1.4210854715202004e-14,0)
sum a = (-2.2737367544323206e-13,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002519663880590636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.414278532483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.452038549591511, dt = 0.0002519663880590636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-1.4210854715202004e-14,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025358345423016253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 750.3968790614725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.45229051597957, dt = 0.00025358345423016253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.771561172376096e-16,-1.509903313490213e-14,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002563430710840823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.2569918693407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4525440994338, dt = 0.0002563430710840823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.21 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-1.4210854715202004e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002602655477384844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 738.815359140208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.452800442504884, dt = 0.0002602655477384844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (0.8%)
patch tree reduce : 450.00 ns (0.1%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 369.22 us (97.4%)
LB move op cnt : 0
LB apply : 1.99 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.3322676295501878e-14,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026538281514856143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.363e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.3784719808901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4530607080526226, dt = 0.00026538281514856143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.2434497875801753e-14,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002717386619209454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.1535345673716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.453326090867771, dt = 0.0002717386619209454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.2434497875801753e-14,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002793891007662231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.8328074192743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4535978295296923, dt = 0.0002793891007662231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-1.1546319456101628e-14,0)
sum a = (1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028840286619748727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 878.2130872322191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4538772186304585, dt = 0.00028840286619748727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.3%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-1.2434497875801753e-14,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002988620449741233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 903.6136862822688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.454165621496656, dt = 0.0002988620449741233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.1546319456101628e-14,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003108628415930852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 905.8865703782532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.45446448354163, dt = 0.0003108628415930852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.2434497875801753e-14,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032451648182601356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.4482574727517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.454775346383223, dt = 0.00032451648182601356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-1.1546319456101628e-14,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033995025786762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.713056920882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4550998628650493, dt = 0.00033995025786762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.1546319456101628e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003573087190718175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.9523949910604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.455439813122917, dt = 0.0003573087190718175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.48 us (9.5%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 237.79 us (88.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.1546319456101628e-14,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037675501247431156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.7307093583825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.455797121841989, dt = 0.00037675501247431156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-1.1546319456101628e-14,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.98e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003984723772939763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1158.8123804144445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4561738768544634, dt = 0.0003984723772939763 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 266.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0658141036401503e-14,0)
sum a = (2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004226657973225069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1174.8167206847222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4565723492317573, dt = 0.0004226657973225069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-1.1546319456101628e-14,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004495638144953747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1272.9033737204013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.45699501502908, dt = 0.0004495638144953747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-1.1546319456101628e-14,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004794205059194046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1362.749338537588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.457444578843575, dt = 0.0004794205059194046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-1.0658141036401503e-14,0)
sum a = (-1.4210854715202004e-14,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005125176251339192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1505.871377949711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4579239993494943, dt = 0.0005125176251339192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0658141036401503e-14,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.49e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005491669063109833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1579.8223385893305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4584365169746283, dt = 0.0005491669063109833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-1.0658141036401503e-14,0)
sum a = (-7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.00058971252734948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.507776749803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.458985683880939, dt = 0.00058971252734948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-1.021405182655144e-14,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006345337242661985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1834.7402485868704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4595753964082885, dt = 0.0006345337242661985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.021405182655144e-14,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006840475447981571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1910.8560562923183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.460209930132555, dt = 0.0006840475447981571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (-3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007387117235517949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2053.321583203494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.460893977677353, dt = 0.0007387117235517949 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 642.00 ns (0.3%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.000799027654199666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2302.719336646057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4616326894009046, dt = 0.000799027654199666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008655434259541413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2445.2981284466446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.462431717055104, dt = 0.0008655434259541413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009388568816509372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2596.753623659548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4632972604810583, dt = 0.0009388568816509372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.001019618643059031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2933.5610600266755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4642361173627094, dt = 0.001019618643059031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011085350353062723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3021.813531635132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4652557360057683, dt = 0.0011085350353062723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012063708263934695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3444.182571553104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4663642710410745, dt = 0.0012063708263934695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013139516795124782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3522.896309474802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.467570641867468, dt = 0.0013139516795124782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-9.992007221626409e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014321661951798056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4002.0898254858507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4688845935469805, dt = 0.0014321661951798056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.1%)
LB compute : 276.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3322676295501878e-15,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015619673970091032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4328.795003595408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4703167597421603, dt = 0.0015619673970091032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.992007221626409e-15,0)
sum a = (1.4210854715202004e-14,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017043734893344912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4520.217389464319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4718787271391696, dt = 0.0017043734893344912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001860467687056946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5006.764277831635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.473583100628504, dt = 0.001860467687056946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (1.4210854715202004e-14,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002031396888390052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5665.248742560738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4754435683155607, dt = 0.002031396888390052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 260.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.992007221626409e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002218368930228966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6128.921218743033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.477474965203951, dt = 0.002218368930228966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.992007221626409e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002422648134541208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6817.831381177143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.47969333413418, dt = 0.002422648134541208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 303.59 us (97.1%)
LB move op cnt : 0
LB apply : 1.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026455488237105795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6996.873849247365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4821159822687213, dt = 0.0026455488237105795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.658940314238862e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028884264547988036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7728.285455026348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.484761531092432, dt = 0.0028884264547988036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.658940314238862e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031526659993429407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8484.135990877841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4876499575472306, dt = 0.0031526659993429407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.658940314238862e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.003439667179234423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9662.636535455544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4908026235465734, dt = 0.003439667179234423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.003750826163659896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10574.381666944706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4942422907258077, dt = 0.003750826163659896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 229.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.004087513340852818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11461.926087009644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4979931168894676, dt = 0.004087513340852818 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 532.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.2%)
LB compute : 280.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.004451046805910105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11998.258384541617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5020806302303202, dt = 0.004451046805910105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.004842661257069792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13304.67812765035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5065316770362305, dt = 0.004842661257069792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.005263472072869378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14369.464627262952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5113743382933005, dt = 0.005263472072869378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.797718192317006e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0057144344568557616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15955.15317514147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.51663781036617, dt = 0.0057144344568557616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.797718192317006e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.006196297690081601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16686.04998092338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5223522448230256, dt = 0.006196297690081601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0067095547288306134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18984.14292596336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.528548542513107, dt = 0.0067095547288306134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-16,-9.783840404509192e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.007254387628810241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19904.768713084162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.535258097241938, dt = 0.007254387628810241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.7907792984131e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.007830609568218233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21260.961263909463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.542512484870748, dt = 0.007830609568218233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.787309851461146e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.008437604578359436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22566.706568864112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5503430944389662, dt = 0.008437604578359436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,-9.783840404509192e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.009074266465570493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26018.50051530466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.558780699017326, dt = 0.009074266465570493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.797718192317006e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.009738938810822377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26895.791399611204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5678549654828964, dt = 0.009738938810822377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 782.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.20 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.797718192317006e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010429358346389847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29197.229957370724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.577593904293719, dt = 0.010429358346389847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.51 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.797718192317006e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011142604408836193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30412.499187559697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5880232626401085, dt = 0.011142604408836193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.825473767932635e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.01187505752409604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32930.399541435196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.599165867048945, dt = 0.01187505752409604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.797718192317006e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012622370457370639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35012.655344253195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.611040924573041, dt = 0.012622370457370639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.797718192317006e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013379455216814386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38383.27040082704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6236632950304113, dt = 0.013379455216814386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.77 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-02 |
+-----------+-----------+
Info: cfl dt = 0.014140489492079815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39481.33050856315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.637042750247226, dt = 0.014140489492079815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.825473767932635e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-02 |
+-----------+-----------+
Info: cfl dt = 0.014898945794186854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42848.1647838789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.651183239739306, dt = 0.014898945794186854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,-9.825473767932635e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015647646104889838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43164.42823934991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.666082185533493, dt = 0.015647646104889838 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.825473767932635e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.016378844115619174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46921.66715889082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.681729831638383, dt = 0.016378844115619174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.769962616701378e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.017084336128783132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48989.15663398361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.698108675754002, dt = 0.017084336128783132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.825473767932635e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-02 |
+-----------+-----------+
Info: cfl dt = 0.017755600420695503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51231.064413758824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.715193011882785, dt = 0.017755600420695503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.769962616701378e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-02 |
+-----------+-----------+
Info: cfl dt = 0.018383963365590034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53139.75296936226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7329486123034807, dt = 0.018383963365590034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 282.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.220446049250313e-16,-9.71445146547012e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.018960788963624325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53144.02043150062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7513325756690707, dt = 0.018960788963624325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3306690738754696e-16,-9.769962616701378e-15,0)
sum a = (-4.440892098500626e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-02 |
+-----------+-----------+
Info: cfl dt = 0.019477686701267344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57329.29653175175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7702933646326953, dt = 0.019477686701267344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.885780586188048e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.01992673102401336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58680.83995049299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7897710513339624, dt = 0.01992673102401336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (4.440892098500626e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.020300684259998557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60898.595783606004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8096977823579756, dt = 0.020300684259998557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02059321374471057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60163.00045523679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8299984666179743, dt = 0.02059321374471057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-16,-9.769962616701378e-15,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020799093297086176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60914.40290289845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.850591680362685, dt = 0.020799093297086176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-16,-9.769962616701378e-15,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020914379194243115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61366.325620828604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8713907736597712, dt = 0.020914379194243115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-16,-9.769962616701378e-15,0)
sum a = (-4.440892098500626e-16,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020936551450979373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60834.80058407409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8923051528540142, dt = 0.020936551450979373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0939474033052647e-16,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020864612539868398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63531.37072436692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9132417043049936, dt = 0.020864612539868398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-16,-9.769962616701378e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020699137633535158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63319.478847194034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9341063168448622, dt = 0.020699137633535158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.718447854656915e-16,-9.825473767932635e-15,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02044227289415256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.391e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53553.45074144044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9548054544783975, dt = 0.02044227289415256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.769962616701378e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020097681102621997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61275.500450830106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.97524772737255, dt = 0.020097681102621997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 266.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.71445146547012e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019670436798241927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60854.78367349204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9953454084751723, dt = 0.019670436798241927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.996003610813204e-16,-9.658940314238862e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01916687585861951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60808.401349267806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.015015845273414, dt = 0.01916687585861951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.71445146547012e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018594406866740115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58863.765218915556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.034182721132034, dt = 0.018594406866740115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.71445146547012e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.017961293497675147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54759.447103743274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.052777127998774, dt = 0.017961293497675147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.603429163007604e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017276418374792893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54592.03011027252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.070738421496449, dt = 0.017276418374792893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.658940314238862e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.016549039324773317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52203.9489680972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.088014839871242, dt = 0.016549039324773317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.658940314238862e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01578854870406385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49691.79918375267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.104563879196015, dt = 0.01578854870406385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3306690738754696e-16,-9.658940314238862e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.015004245545808204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47470.95250850625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.120352427900079, dt = 0.015004245545808204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 243.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.658940314238862e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.014205128809951525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44897.57435919328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.135356673445887, dt = 0.014205128809951525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.658940314238862e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013399718171568502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43017.4924404416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.149561802255839, dt = 0.013399718171568502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 250.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.658940314238862e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012595906731535943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40694.062133688036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.162961520427407, dt = 0.012595906731535943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.603429163007604e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011800847954101908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39100.58759060849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.175557427158943, dt = 0.011800847954101908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 237.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.603429163007604e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.01102087718182165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35578.00271234879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.187358275113045, dt = 0.01102087718182165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.603429163007604e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010261466371136372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33187.77712169467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.198379152294867, dt = 0.010261466371136372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.603429163007604e-15,0)
sum a = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.009527209313623618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32116.40004146205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.208640618666003, dt = 0.009527209313623618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.603429163007604e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.008821833600234662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29872.180833322465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.218167827979626, dt = 0.008821833600234662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.606898609959558e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.008148234953230521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27125.11580427443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.226989661579861, dt = 0.008148234953230521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.58 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.610368056911511e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.007508529267306261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24876.43539598895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.235137896533091, dt = 0.007508529267306261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.661338147750939e-16,-9.58955137519979e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.006904117719991149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23181.627870658416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.242646425800397, dt = 0.006904117719991149 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.881784197001252e-16,-9.58955137519979e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.006335760571270277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21730.081528353898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.249550543520389, dt = 0.006335760571270277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.440892098500626e-16,-9.603429163007604e-15,0)
sum a = (-3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.005803655708049628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18566.542928916566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.255886304091659, dt = 0.005803655708049628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.603429163007604e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.005307518536913652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17652.31844813095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.261689959799709, dt = 0.005307518536913652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 248.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.603429163007604e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.004846660431549444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16347.942703162837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.266997478336623, dt = 0.004846660431549444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.603429163007604e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.004420063551787597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14956.12295236201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.271844138768172, dt = 0.004420063551787597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 237.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040264504329162515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13765.487279681704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.276264202319959, dt = 0.0040264504329162515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.43689570931383e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036643472711638918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12550.301357176813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.280290652752876, dt = 0.0036643472711638918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033321402883807914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11510.305343717208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.283955000024039, dt = 0.0033321402883807914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-9.43689570931383e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030281249387678947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.434e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8366.798587297895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2872871403124195, dt = 0.0030281249387678947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.43689570931383e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.002750548022424767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9216.85949076722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.290315265251188, dt = 0.002750548022424767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 241.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024976429987557517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8328.243083030473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.293065813273612, dt = 0.0024976429987557517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.547918011776346e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022676589547945304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7820.891566707494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.295563456272368, dt = 0.0022676589547945304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-9.547918011776346e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002058883788456724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6974.801089216438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.297831115227162, dt = 0.002058883788456724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-9.769962616701378e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018696622244405877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6299.550342935559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.299889999015619, dt = 0.0018696622244405877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-9.769962616701378e-15,0)
sum a = (-7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016984093006413934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5844.353395439604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.30175966124006, dt = 0.0016984093006413934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,-9.769962616701378e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001543619954489428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5231.307282613155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.303458070540701, dt = 0.001543619954489428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,-9.769962616701378e-15,0)
sum a = (1.4210854715202004e-14,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014038753094875347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4849.39798359918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.305001690495191, dt = 0.0014038753094875347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 269.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3322676295501878e-15,-9.769962616701378e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012778462191390019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4178.407588136916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3064055658046785, dt = 0.0012778462191390019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-9.325873406851315e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011642945739243566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3834.3630454717813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.307683412023818, dt = 0.0011642945739243566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 512.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010620728213480072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3569.5851834014065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.308847706597742, dt = 0.0010620728213480072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-16,-8.881784197001252e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009701220926271115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3352.7612933559917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.30990977941909, dt = 0.0009701220926271115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 278.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-8.881784197001252e-15,0)
sum a = (-7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.000887469274724434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2821.756082500609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.310879901511718, dt = 0.000887469274724434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 552.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-8.43769498715119e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008132233147693545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2688.416008710906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.311767370786442, dt = 0.0008132233147693545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-8.43769498715119e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007465709964939754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2481.6827654583017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.312580594101211, dt = 0.0007465709964939754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006867723856886554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2294.317751979027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.313327165097705, dt = 0.0006867723856886554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-7.993605777301127e-15,0)
sum a = (-1.7763568394002505e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.000633156104051424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2130.923532547311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.314013937483394, dt = 0.000633156104051424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-7.105427357601002e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005851145581098004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1981.2080012665256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.314647093587445, dt = 0.0005851145581098004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-7.105427357601002e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005420992218965749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1805.333354927339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.315232208145555, dt = 0.0005420992218965749 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-7.105427357601002e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005036160484158254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1634.509714915747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.315774307367452, dt = 0.0005036160484158254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004692210652315463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1553.9428657725123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.316277923415868, dt = 0.0004692210652315463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.21 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-7.105427357601002e-15,0)
sum a = (-2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043851619331182983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1391.9022228578124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.316747144481099, dt = 0.00043851619331182983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041114531512937477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.4620556833152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3171856606744115, dt = 0.00041114531512937477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038679060753440974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1281.491891312337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.317596805989541, dt = 0.00038679060753440974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003651691466881282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1205.7700705685263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.317983596597076, dt = 0.0003651691466881282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.105427357601002e-15,0)
sum a = (1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003460297860180411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1137.5985878134834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.318348765743764, dt = 0.0003460297860180411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.105427357601002e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032915030341426616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.839784565646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.318694795529781, dt = 0.00032915030341426616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.105427357601002e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031433481044942945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.2165935912873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.319023945833195, dt = 0.00031433481044942945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030141141403368507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 951.0047588823865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3193382806436444, dt = 0.00030141141403368507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.8%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 339.15 us (97.2%)
LB move op cnt : 0
LB apply : 2.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029023011940444677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 848.7546848314751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.319639692057678, dt = 0.00029023011940444677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-6.217248937900877e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002806609625236802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.3672070439454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.319929922177082, dt = 0.0002806609625236802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027259235966840546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 869.6882564610341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.320210583139606, dt = 0.00027259235966840546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026592966213181366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.6168078916456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.320483175499275, dt = 0.00026592966213181366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002605939044041499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 747.9318493197842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.320749105161407, dt = 0.0002605939044041499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002565207348938815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.4429378078213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.321009699065811, dt = 0.0002565207348938815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.51 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.216449660063518e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002536595191158586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.5631243563518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.321266219800704, dt = 0.0002536595191158586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.216449660063518e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025197260626248546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.7956884142748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.32151987931982, dt = 0.00025197260626248546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.188694084447889e-15,-5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002514347511453177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.3356049819611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.321771851926083, dt = 0.0002514347511453177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 235.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.244205235679146e-15,-5.329070518200751e-15,0)
sum a = (2.2737367544323206e-13,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002520326846156449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.2122050634867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.322023286677228, dt = 0.0002520326846156449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.216449660063518e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002537648267180114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.4813377247151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.322275319361844, dt = 0.0002537648267180114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.216449660063518e-15,-5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025664113798006655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.5752177415615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.322529084188562, dt = 0.00025664113798006655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002606831053792946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.5200002847585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3227857253265425, dt = 0.0002606831053792946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026592386063839025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.1326496365476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.323046408431922, dt = 0.00026592386063839025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002724084295742247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.164671959864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.32331233229256, dt = 0.0002724084295742247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (0.9%)
patch tree reduce : 390.00 ns (0.1%)
gen split merge : 301.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.1%)
LB compute : 256.28 us (97.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (78.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028019411224891773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.2572972991576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.323584740722135, dt = 0.00028019411224891773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028935099463356096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.4735321230739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.323864934834384, dt = 0.00028935099463356096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029996259338237175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.308952115198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.324154285829017, dt = 0.00029996259338237175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-3.552713678800501e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.000312126636112094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 882.4181076607025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.324454248422399, dt = 0.000312126636112094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-3.552713678800501e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.26e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003259559802698087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 924.8189013865326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.324766375058512, dt = 0.0003259559802698087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.4%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003415796742294893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 997.9788785095236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.325092331038782, dt = 0.0003415796742294893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.000359144164656228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.657237667972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.325433910713011, dt = 0.000359144164656228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037881465438362503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.1473931911742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.325793054877668, dt = 0.00037881465438362503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004007766150239491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1112.941422657897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.326171869532051, dt = 0.0004007766150239491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004252374582236255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1166.647918484984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.326572646147075, dt = 0.0004252374582236255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.000452428368830355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1280.0806498886213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.326997883605299, dt = 0.000452428368830355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-5.329070518200751e-15,0)
sum a = (-2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048260630218393023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.1382558958317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.327450311974129, dt = 0.00048260630218393023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 237.96 us (89.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-1.4210854715202004e-14,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005160561462000114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1430.8278261166554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.327932918276313, dt = 0.0005160561462000114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005530930467910048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1529.3183159243367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.328448974422513, dt = 0.0005530930467910048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005940648923528872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1650.3876767644458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.329002067469304, dt = 0.0005940648923528872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.39e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006393549494184092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1820.8032935625777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.329596132361657, dt = 0.0006393549494184092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006893846369972009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1895.133730120766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.330235487311076, dt = 0.0006893846369972009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.884981308350689e-15,0)
sum a = (3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007446164214379265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2112.450231981052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.330924871948073, dt = 0.0007446164214379265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-4.884981308350689e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008055568066883248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217.240286864922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.331669488369511, dt = 0.0008055568066883248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008727593864143275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2469.12912595346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.332475045176199, dt = 0.0008727593864143275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009468279143787781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2720.479783509994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.333347804562614, dt = 0.0009468279143787781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010284193375784871 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2935.36956430241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.334294632476992, dt = 0.0010284193375784871 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 672.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.01 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.329070518200751e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011182467227038378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3187.2719640653113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.335323051814571, dt = 0.0011182467227038378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.001217081990340093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3498.7699486910024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.336441298537275, dt = 0.001217081990340093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.773159728050814e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013257583528244253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3681.789482939162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.337658380527615, dt = 0.0013257583528244253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.551115123125783e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014451723307049638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4040.2764356938615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3389841388804395, dt = 0.0014451723307049638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.551115123125783e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001576285199286151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4368.143383066916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.340429311211144, dt = 0.001576285199286151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.329070518200751e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017201236908577693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4900.60125258984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.342005596410431, dt = 0.0017201236908577693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.1%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 296.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018777797500999789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5063.257788195713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.343725720101289, dt = 0.0018777797500999789 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020504091102217705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5539.940470582967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.345603499851389, dt = 0.0020504091102217705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022392284262457585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6277.413810615025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.347653908961611, dt = 0.0022392284262457585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.551115123125783e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024455106704086137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6776.169266313281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.349893137387856, dt = 0.0024455106704086137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.662137425588298e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.00267057846416672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7335.6517330178785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.352338648058265, dt = 0.00267057846416672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.662137425588298e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.002915794993462835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7968.671364335399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.355009226522432, dt = 0.002915794993462835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.773159728050814e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.003182552130886697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8763.531787707356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.357925021515895, dt = 0.003182552130886697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.773159728050814e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.003472255372856939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9747.579242932637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.361107573646781, dt = 0.003472255372856939 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.773159728050814e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.003786305195252013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10511.695488578926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.364579829019638, dt = 0.003786305195252013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0041260744409114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11652.799181103468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.36836613421489, dt = 0.0041260744409114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.004492881381576104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12600.271609166739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.372492208655801, dt = 0.004492881381576104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.55 us (8.8%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.35 us (89.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.004887958150091371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13448.63128258268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.376985090037377, dt = 0.004887958150091371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.773159728050814e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.005312414321340715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14785.547182295084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.381873048187469, dt = 0.005312414321340715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.745404152435185e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.005767195537782787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15579.638332171045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.38718546250881, dt = 0.005767195537782787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.006253037232692829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17635.769753706303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3929526580465925, dt = 0.006253037232692829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.745404152435185e-15,0)
sum a = (-1.7763568394002505e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0067704137055423635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18287.284518107546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.399205695279285, dt = 0.0067704137055423635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.745404152435185e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.007319483052213139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20944.534009975378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.405976108984827, dt = 0.007319483052213139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.74 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.748873599387139e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.00790002874853262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22104.374871415544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4132955920370405, dt = 0.00790002874853262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.752343046339092e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.008511399026400497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24379.230663815084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.421195620785573, dt = 0.008511399026400497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.745404152435185e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.009152445560900765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26741.76609691798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.429707019811974, dt = 0.009152445560900765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.7592819402429996e-15,0)
sum a = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.00982146339253498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27915.949201500953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.438859465372874, dt = 0.00982146339253498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 227.21 us (88.1%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.745404152435185e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010516134423416751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27101.417578900593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.448680928765409, dt = 0.010516134423416751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011233477225783632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31868.95181054465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.459197063188825, dt = 0.011233477225783632 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.82 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.01196980625474027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34915.00843753114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.470430540414609, dt = 0.01196980625474027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012720703827902077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36259.87041175037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.482400346669349, dt = 0.012720703827902077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.689893001203927e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013481008381043052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39867.19833377658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.495121050497252, dt = 0.013481008381043052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.662137425588298e-15,0)
sum a = (-8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.014244822487205171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41428.68254876861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.508602058878295, dt = 0.014244822487205171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.662137425588298e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.015005543894533485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43599.96306169266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5228468813655, dt = 0.015005543894533485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-5.6066262743570405e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01575592235880037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45927.17622490607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.537852425260033, dt = 0.01575592235880037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.885780586188048e-15,-5.6066262743570405e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.01648814429496974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49457.325296136565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.553608347618834, dt = 0.01648814429496974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.662137425588298e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.017193946240249405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50293.60681594815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.570096491913803, dt = 0.017193946240249405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.6066262743570405e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017864756823755757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54274.1533248905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.587290438154053, dt = 0.017864756823755757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 287.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.662137425588298e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.018491865417405287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50736.97541969433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.605155194977809, dt = 0.018491865417405287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.6066262743570405e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.01906661397100575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54593.90469144895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.623647060395214, dt = 0.01906661397100575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 424.36 us (98.0%)
LB move op cnt : 0
LB apply : 1.50 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.6066262743570405e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.019580606813033186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.369e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50152.31344670294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.64271367436622, dt = 0.019580606813033186 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.6066262743570405e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-02 |
+-----------+-----------+
Info: cfl dt = 0.02002593155339992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58034.28577173251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.662294281179253, dt = 0.02002593155339992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.6066262743570405e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.020395382798121475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62409.302173913544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6823202127326535, dt = 0.020395382798121475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.6066262743570405e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.02068267932450885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61409.01193350643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.702715595530775, dt = 0.02068267932450885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.6066262743570405e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020882664804032485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64779.069563777426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.723398274855284, dt = 0.020882664804032485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.093947403305265e-15,-5.662137425588298e-15,0)
sum a = (4.440892098500626e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02099148220448682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62813.035663302784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.744280939659316, dt = 0.02099148220448682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.085273785925381e-15,-5.662137425588298e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.021006712715126562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64183.17628076802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.765272421863803, dt = 0.021006712715126562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.08006961549745e-15,-5.662137425588298e-15,0)
sum a = (4.440892098500626e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.0209274714224011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63036.79036416755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.78627913457893, dt = 0.0209274714224011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.052314039881821e-15,-5.662137425588298e-15,0)
sum a = (8.881784197001252e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020754453959955125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64996.24037801204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.807206606001331, dt = 0.020754453959955125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.052314039881821e-15,-5.662137425588298e-15,0)
sum a = (4.440892098500626e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.02048993084128594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64632.07351409572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.827961059961286, dt = 0.02048993084128594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.052314039881821e-15,-5.6066262743570405e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.020137688978764747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60321.37409668051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.848450990802572, dt = 0.020137688978764747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.052314039881821e-15,-5.662137425588298e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019702922782526302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61334.10068152853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.868588679781337, dt = 0.019702922782526302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 273.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.662137425588298e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019192079985372104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58962.88434456306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.888291602563863, dt = 0.019192079985372104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.885780586188048e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018612669733536584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60150.32289932379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.907483682549236, dt = 0.018612669733536584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.885780586188048e-15,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.017973042330625855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55539.25429521341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.926096352282772, dt = 0.017973042330625855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.01728215119070291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56437.50977166363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.944069394613398, dt = 0.01728215119070291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.016549307981616027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52450.64125044616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.961351545804101, dt = 0.016549307981616027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01578394162842892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51574.26574913298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.977900853785717, dt = 0.01578394162842892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.717648576819556e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.014995370873348374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49159.20398582908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.993684795414146, dt = 0.014995370873348374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 340.00 ns (0.1%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.773159728050814e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.01419259858111066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46816.39976901475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.008680166287495, dt = 0.01419259858111066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013384134101493672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44147.115325360224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.022872764868605, dt = 0.013384134101493672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.24 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.745404152435185e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012577847932744274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39844.273257952846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.036256898970099, dt = 0.012577847932744274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.745404152435185e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011780860845651988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37652.99776052344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.048834746902843, dt = 0.011780860845651988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.773159728050814e-15,0)
sum a = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.010999467680463108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34355.24152489832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0606156077484945, dt = 0.010999467680463108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 592.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 255.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.773159728050814e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.010239094336931228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32546.976477644395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.071615075428958, dt = 0.010239094336931228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.7870375158586285e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.009504285120867645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31187.433571889927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.081854169765889, dt = 0.009504285120867645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.00879871662737122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29766.314882296436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.091358454886757, dt = 0.00879871662737122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.766220834146907e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.008125233733501117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27476.550754922853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1001571715141285, dt = 0.008125233733501117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.7696902810988604e-15,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.007485903013686458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25259.684924161826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.108282405247629, dt = 0.007485903013686458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-5.7592819402429996e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.006882078930564411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23537.265329798345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.115768308261316, dt = 0.006882078930564411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.006314478430726625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21053.624424303503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1226503871918805, dt = 0.006314478430726625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.005783260023217239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19208.788700756915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.128964865622607, dt = 0.005783260023217239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.00528810397496992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17346.26745049299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1347481256458245, dt = 0.00528810397496992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.004828290865041574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16321.434501716585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.140036229620795, dt = 0.004828290865041574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.004402776351647664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15163.661254812001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.144864520485836, dt = 0.004402776351647664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-5.717648576819556e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.004010260586800108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13164.55690323972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1492672968374835, dt = 0.004010260586800108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036492512378912445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12464.60184028318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.153277557424284, dt = 0.0036492512378912445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.773159728050814e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.003318119528859869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11327.039635881216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.156926808662175, dt = 0.003318119528859869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030151490889521126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10033.834920680496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.160244928191035, dt = 0.0030151490889521126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.88418203051333e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027385776944049527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9312.890190913908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.163260077279987, dt = 0.0027385776944049527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-5.88418203051333e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.002486632212195009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8377.125384688705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.165998654974392, dt = 0.002486632212195009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.773159728050814e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022575572129362566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7398.048947384889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.168485287186587, dt = 0.0022575572129362566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 292.44 us (97.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020496378213803925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6850.60873080287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.170742844399523, dt = 0.0020496378213803925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.551115123125783e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001861217427663468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6408.383574763714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1727924822209035, dt = 0.001861217427663468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.773159728050814e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016907109001313043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5712.794769415346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.174653699648567, dt = 0.0016907109001313043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.551115123125783e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015366139301961855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5154.401239510873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.176344410548698, dt = 0.0015366139301961855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.773159728050814e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013975091090978116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4743.607571086898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.177881024478895, dt = 0.0013975091090978116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012720692923235894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4386.199987752653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1792785335879925, dt = 0.0012720692923235894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011590587552221844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3927.68877675088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.180550602880316, dt = 0.0011590587552221844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-5.773159728050814e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.001057332587294342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3471.6303362044664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.181709661635538, dt = 0.001057332587294342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009658347159991002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3295.841762649379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.182766994222832, dt = 0.0009658347159991002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.00088359489600677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2917.6407317811436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.183732828938831, dt = 0.00088359489600677 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008097249482517373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2700.9526323727737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1846164238348385, dt = 0.0008097249482517373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 230.60 us (88.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-4.884981308350689e-15,0)
sum a = (3.552713678800501e-15,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007434144858783716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2545.7911739562105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.18542614878309, dt = 0.0007434144858783716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006839263217566345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2318.5874353921436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.186169563268969, dt = 0.0006839263217566345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-4.884981308350689e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006305917148457794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2087.0766490977694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1868534895907255, dt = 0.0006305917148457794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005828055802290474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1909.2415223980763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.187484081305572, dt = 0.0005828055802290474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005400217598824576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1837.4326989833037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1880668868858, dt = 0.0005400217598824576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 285.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005017484278211247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1581.4540783250663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.188606908645683, dt = 0.0005017484278211247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004675436837716073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1560.0080666359052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.189108657073504, dt = 0.0004675436837716073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 258.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-4.440892098500626e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043701137350878733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1431.1125767803794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.189576200757275, dt = 0.00043701137350878733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-3.552713678800501e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040979716103233096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1373.0358423822006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1900132121307845, dt = 0.00040979716103233096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003855848674212147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1270.0751658469867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.190423009291817, dt = 0.0003855848674212147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036409308310510733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1183.792421163007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.190808594159238, dt = 0.00036409308310510733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 385.66 us (97.7%)
LB move op cnt : 0
LB apply : 1.84 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034507205407465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.348e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.0748976581581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.191172687242343, dt = 0.00034507205407465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.3%)
patch tree reduce : 451.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 960.88 us (99.1%)
LB move op cnt : 0
LB apply : 1.69 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-2.6645352591003757e-15,0)
sum a = (1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003283008379034793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.905e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.2265550248445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.191517759296418, dt = 0.0003283008379034793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-2.6645352591003757e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031358472209676714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.739888063446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1918460601343215, dt = 0.00031358472209676714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.6645352591003757e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003007528949750467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.5690479240606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.192159644856418, dt = 0.0003007528949750467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.3%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 917.22 us (99.1%)
LB move op cnt : 0
LB apply : 1.60 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-2.6645352591003757e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002896563578439443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.344e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.9008707689008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.192460397751393, dt = 0.0002896563578439443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (0.4%)
patch tree reduce : 490.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 714.26 us (98.7%)
LB move op cnt : 0
LB apply : 1.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-3.552713678800501e-15,0)
sum a = (1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002801660664177239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.658e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 628.9186762794286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.192750054109237, dt = 0.0002801660664177239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002721712892131067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 861.3140054806247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193030220175655, dt = 0.0002721712892131067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-5.329070518200751e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002655781707903868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.2667747237293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193302391464868, dt = 0.0002655781707903868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002603084881936538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.4639772409647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193567969635658, dt = 0.0002603084881936538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-5.329070518200751e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025629858965156067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.6737121866101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193828278123852, dt = 0.00025629858965156067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002534985054806474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.9179595175639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.194084576713504, dt = 0.0002534985054806474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-7.105427357601002e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025187122213375776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.2031547613815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.194338075218984, dt = 0.00025187122213375776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.382983113757291e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002513921114161661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 745.5162697905188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.194589946441118, dt = 0.0002513921114161661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.382983113757291e-15,-6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025204850801983236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.3308363570574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.194841338552534, dt = 0.00025204850801983236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.47 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.438494264988549e-15,-5.329070518200751e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002538394296766384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.312e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 691.6223463158277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.195093387060553, dt = 0.0002538394296766384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002567754353846679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.1983679665947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.19534722649023, dt = 0.0002567754353846679 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.771561172376096e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026087861830149445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.4286235761507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.195604001925615, dt = 0.00026087861830149445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026618273101159285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.621591635846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.195864880543916, dt = 0.00026618273101159285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.000272733441949394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.211199864666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.196131063274928, dt = 0.000272733441949394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002805887227837171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 848.7760691111284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1964037967168775, dt = 0.0002805887227837171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002898193675313909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 881.9138253959252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.196684385439661, dt = 0.0002898193675313909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030050964505458914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 869.093083499103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1969742048071925, dt = 0.00030050964505458914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031275808739225836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 928.5433565503384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.197274714452247, dt = 0.00031275808739225836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003266784170624322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 942.1732893056851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.197587472539639, dt = 0.0003266784170624322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-3.552713678800501e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034240061702655114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1013.9099837441898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.197914150956701, dt = 0.00034240061702655114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-4.440892098500626e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036007214740153127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.0521177783514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.198256551573728, dt = 0.00036007214740153127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-4.440892098500626e-15,0)
sum a = (5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.000379859313206548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1103.824488451347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.198616623721129, dt = 0.000379859313206548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 672.00 ns (0.2%)
LB compute : 260.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-3.552713678800501e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040194878739856124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1139.861005102578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.198996483034336, dt = 0.00040194878739856124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004265492931344315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1228.1443462555756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.199398431821735, dt = 0.0004265492931344315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045389344853953356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1275.4060913112748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.19982498111487, dt = 0.00045389344853953356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.00048423977619379416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1394.056137703312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.200278874563409, dt = 0.00048423977619379416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 284.16 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-3.552713678800501e-15,0)
sum a = (-1.4210854715202004e-14,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005178748779848415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1394.9386450074328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.200763114339603, dt = 0.0005178748779848415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005551157738300265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1590.8491790363253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2012809892175875, dt = 0.0005551157738300265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005963123999258188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1722.388523414251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2018361049914175, dt = 0.0005963123999258188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 230.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-4.440892098500626e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006418502585207054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1819.2951718788752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.202432417391344, dt = 0.0006418502585207054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 278.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006921532065868761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1960.5398772378883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.203074267649864, dt = 0.0006921532065868761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-3.9968028886505635e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007476863650317637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2169.101964671759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.203766420856451, dt = 0.0007476863650317637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-3.9968028886505635e-15,0)
sum a = (7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008089591230733227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2300.5203419359973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.204514107221483, dt = 0.0008089591230733227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-3.552713678800501e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008765282039204356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.358e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2144.868298007671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.205323066344556, dt = 0.0008765282039204356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-3.552713678800501e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009510007477602191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2577.5229441608312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.206199594548477, dt = 0.0009510007477602191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-3.9968028886505635e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010330373560613955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2859.631823057111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.207150595296237, dt = 0.0010330373560613955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011233550271648747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3169.9525835449567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.208183632652298, dt = 0.0011233550271648747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-4.440892098500626e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.001222729896871124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3440.5739094795586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.209306987679462, dt = 0.001222729896871124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013319996790993511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3643.14911238094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.210529717576334, dt = 0.0013319996790993511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.10702591327572e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014520656805841168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4026.9900818025926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.211861717255433, dt = 0.0014520656805841168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 298.26 us (97.0%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.329070518200751e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015838942399607492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4271.207138377208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.213313782936017, dt = 0.0015838942399607492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 273.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017285174155438684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4576.450432809954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.214897677175977, dt = 0.0017285174155438684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018870327178345428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5137.117787756046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.216626194591521, dt = 0.0018870327178345428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.773159728050814e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020606016526952776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5795.1990597461545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.218513227309356, dt = 0.0020606016526952776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.01 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022504468098367824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6184.995384871862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.220573828962051, dt = 0.0022504468098367824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.773159728050814e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002457847199687478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6796.6571409979515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.222824275771888, dt = 0.002457847199687478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.995204332975845e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.002684131511142878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7299.837572373371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.225282122971576, dt = 0.002684131511142878 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.995204332975845e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.002930668934816359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7780.147714528012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.227966254482719, dt = 0.002930668934816359 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-6.106226635438361e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031988571734212156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8344.643511906192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.230896923417535, dt = 0.0031988571734212156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-5.995204332975845e-15,0)
sum a = (3.552713678800501e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.003490107245536638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9687.048553755723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.234095780590956, dt = 0.003490107245536638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038058246845636134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.6% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10446.052075620888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2375858878364925, dt = 0.0038058246845636134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.995204332975845e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.00414738674507827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11370.542141003845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2413917125210565, dt = 0.00414738674507827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.050715484207103e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.004516115258532284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12139.393641650675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.245539099266135, dt = 0.004516115258532284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-6.106226635438361e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.004913244834316457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13853.42119944394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.250055214524667, dt = 0.004913244834316457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.005339886185908491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14937.242187777254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.254968459358984, dt = 0.005339886185908491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.13398221105399e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.005796984480555926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15848.403352498928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2603083455448925, dt = 0.005796984480555926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.006285272769782219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16995.03982637909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.266105330025448, dt = 0.006285272769782219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-6.1201044232461754e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.006805220761217237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18789.569419169566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.27239060279523, dt = 0.006805220761217237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2212453270876722e-14,-6.13398221105399e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.007356979442643396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20286.219299339176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.279195823556448, dt = 0.007356979442643396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-6.123573870198129e-15,0)
sum a = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.007940322367257453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22338.516525039282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.286552802999091, dt = 0.007940322367257453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-6.1374516580059435e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.00855458475234431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23615.278030129928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2944931253663485, dt = 0.00855458475234431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.147859998861804e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.009198601925062694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26168.345376760313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.303047710118693, dt = 0.009198601925062694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-6.13398221105399e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.00987064905694773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26865.64239106946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.312246312043755, dt = 0.00987064905694773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 225.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.13398221105399e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010568384545169784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29297.31838581156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.322116961100703, dt = 0.010568384545169784 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.011288799799140195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31086.861858854947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.332685345645873, dt = 0.011288799799140195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.01202817854466841 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33832.70765937645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.343974145445014, dt = 0.01202817854466841 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-02 |
+-----------+-----------+
Info: cfl dt = 0.012782069027415502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35360.84644415359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.356002323989682, dt = 0.012782069027415502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013545272641068843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38300.40617985643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.368784393017098, dt = 0.013545272641068843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014311852479511666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38385.651058176234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.382329665658166, dt = 0.014311852479511666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015075165073703828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43489.50500858181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.396641518137678, dt = 0.015075165073703828 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 286.60 us (96.8%)
LB move op cnt : 0
LB apply : 2.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.015827918086500987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43664.0681442723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.411716683211382, dt = 0.015827918086500987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.98 us (3.6%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 236.99 us (94.1%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016562255977237043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.7% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47557.11110337992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.427544601297883, dt = 0.016562255977237043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.161737786669619e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.01726987460503806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47018.098996185945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.44410685727512, dt = 0.01726987460503806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017942164431058772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51861.8746538279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.461376731880158, dt = 0.017942164431058772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 284.89 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.050715484207103e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.01857038044824716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51678.14660841994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4793188963112165, dt = 0.01857038044824716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.019145835285937312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55366.62253601114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.497889276759464, dt = 0.019145835285937312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 261.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (-4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019660110207948254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54979.37787310539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.517035112045401, dt = 0.019660110207948254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.149080830487037e-14,-6.161737786669619e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.02010527707414653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59299.51023769918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.53669522225335, dt = 0.02010527707414653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 263.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (4.440892098500626e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020474122909986497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58156.06052470342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.556800499327497, dt = 0.020474122909986497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1463052729254741e-14,-6.161737786669619e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.02076036767327114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 2.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60238.38330607852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.577274622237483, dt = 0.02076036767327114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02095886525708148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61107.53285140223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.598034989910754, dt = 0.02095886525708148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021065777828240158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62657.243205655315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.618993855167836, dt = 0.021065777828240158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 234.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1438766600591066e-14,-6.217248937900877e-15,0)
sum a = (4.440892098500626e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021078714332417807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64483.89465627084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.640059632996076, dt = 0.021078714332417807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.217248937900877e-15,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.020996825402917384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64078.02140177034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.661138347328493, dt = 0.020996825402917384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 256.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.217248937900877e-15,0)
sum a = (4.440892098500626e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020820848928585656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63174.3662598736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.682135172731411, dt = 0.020820848928585656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02055310304175573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61850.995071982725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.702956021659997, dt = 0.02055310304175573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.217248937900877e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020197426099562727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61922.84242214209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.723509124701753, dt = 0.020197426099562727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1379786002407855e-14,-6.161737786669619e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.019759066133634543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61289.03244924872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.743706550801315, dt = 0.019759066133634543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1379786002407855e-14,-6.161737786669619e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01924452500129647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58888.14406246428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.763465616934949, dt = 0.01924452500129647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-6.161737786669619e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018661364863837133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56732.15786399347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.782710141936246, dt = 0.018661364863837133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.217248937900877e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.01801798645706391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55304.312418039655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.801371506800082, dt = 0.01801798645706391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 272.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.161737786669619e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.01732338977476476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52285.48982049646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.819389493257146, dt = 0.01732338977476476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.161737786669619e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.01658692819355825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52297.06959012388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.836712883031911, dt = 0.01658692819355825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.161737786669619e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.015818066736966584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51104.2296032276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.85329981122547, dt = 0.015818066736966584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.015026154183422532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48624.46963381151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.869117877962436, dt = 0.015026154183422532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.014220217197313924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46671.63779958803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8841440321458585, dt = 0.014220217197313924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013408782769580229 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44368.160238729266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.898364249343173, dt = 0.013408782769580229 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.13398221105399e-15,0)
sum a = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012599733175006725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40188.002256587526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.911773032112753, dt = 0.012599733175006725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011800195562034396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38202.554833133334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.924372765287759, dt = 0.011800195562034396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.13398221105399e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.011016466340262803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36008.37810147432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9361729608497935, dt = 0.011016466340262803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-6.13398221105399e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010253968839542748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34144.85120972439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9471894271900565, dt = 0.010253968839542748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-6.106226635438361e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.009517241361246095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31648.32330725906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.957443396029599, dt = 0.009517241361246095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.106226635438361e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.008809951764891268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29160.795907594915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.966960637390845, dt = 0.008809951764891268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.0958182945825e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.008134934132937727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26186.019806905173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9757705891557364, dt = 0.008134934132937727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.6%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 453.02 us (98.2%)
LB move op cnt : 0
LB apply : 1.46 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.088879400678593e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0074942428046163795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.385e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21143.30642706259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.983905523288674, dt = 0.0074942428046163795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 256.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-6.106226635438361e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.006889219116395344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22821.436568249574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9913997660932905, dt = 0.006889219116395344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-6.078471059822732e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.006320566470119246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20949.727978307288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.998288985209686, dt = 0.006320566470119246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-6.078471059822732e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.005788429803877261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19694.83982275998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.004609551679805, dt = 0.005788429803877261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 237.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.050715484207103e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.005292476101499097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17735.7296856664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.010397981483682, dt = 0.005292476101499097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.106226635438361e-15,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.004831973187573854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15324.790806690035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0156904575851815, dt = 0.004831973187573854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.161737786669619e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044058646692611315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14886.37682143375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.020522430772755, dt = 0.0044058646692611315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.161737786669619e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040128394682290135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13685.91460048309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.024928295442016, dt = 0.0040128394682290135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.003651394911081621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12496.937307468243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.028941134910244, dt = 0.003651394911081621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.53 us (3.6%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.54 us (94.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.328271240363392e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.003319892799814688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10736.168929516154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.032592529821326, dt = 0.003319892799814688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.328271240363392e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030166082586696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10261.115777260724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0359124226211405, dt = 0.0030166082586696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.439293542825908e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027397714502504153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8930.799545071855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.03892903087981, dt = 0.0027397714502504153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.439293542825908e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024876024766130427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7889.5508491345445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.041668802330061, dt = 0.0024876024766130427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.69 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.661338147750939e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022583399379554033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7159.20923040828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.044156404806674, dt = 0.0022583399379554033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.661338147750939e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002050263721907277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7022.601634490159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.046414744744629, dt = 0.002050263721907277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.6%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 418.93 us (97.8%)
LB move op cnt : 0
LB apply : 2.07 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018617126501774685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.377e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5360.080956488856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.048465008466536, dt = 0.0018617126501774685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-7.105427357601002e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016910976261726648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5829.698667725722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.050326721116714, dt = 0.0016910976261726648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 265.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.327471962526033e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015369109161028215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5065.454088316325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.052017818742887, dt = 0.0015369109161028215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.327471962526033e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013977321649045063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4754.492761094766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.05355472965899, dt = 0.0013977321649045063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012722317037028462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4073.048356607524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.054952461823895, dt = 0.0012722317037028462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011591716529200623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3942.6937465127185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.056224693527597, dt = 0.0011591716529200623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 302.46 us (97.1%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010574052687864206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3312.2502333663715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.057383865180517, dt = 0.0010574052687864206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009658749241376135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3303.261703576306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.058441270449304, dt = 0.0009658749241376135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008836090593130582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2956.1114371977988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0594071453734415, dt = 0.0008836090593130582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (1.4%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.993605777301127e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008097183872798116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2765.74383425236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.060290754432755, dt = 0.0008097183872798116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.549516567451064e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007433915897759308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.9108123751785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.061100472820034, dt = 0.0007433915897759308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.549516567451064e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006838906988104863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2249.7021842874074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.06184386440981, dt = 0.0006838906988104863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-7.549516567451064e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006305463204425444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1950.7546799508987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.06252775510862, dt = 0.0006305463204425444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 238.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.105427357601002e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005827528253062023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1952.0332431771653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.063158301429063, dt = 0.0005827528253062023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005399636026008925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1783.4837665443295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.063741054254369, dt = 0.0005399636026008925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005016864508662571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1606.7808153335686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.06428101785697, dt = 0.0005016864508662571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (-2.842170943040401e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046747915939028697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1568.8841756720703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.064782704307837, dt = 0.00046747915939028697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.993605777301127e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043694531811617007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1402.9027742576563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.065250183467227, dt = 0.00043694531811617007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.217248937900877e-15,0)
sum a = (5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.10e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040973038097727254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1363.6938649661522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.065687128785343, dt = 0.00040973038097727254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.86e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038551799728006966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.3917418611443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.06609685916632, dt = 0.00038551799728006966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003640266176808937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1188.6047180627716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0664823771636005, dt = 0.0003640266176808937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.71 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034500637510961554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.5504439931485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.066846403781281, dt = 0.00034500637510961554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032823623636622583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.9995455987441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.067191410156391, dt = 0.00032823623636622583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 275.74 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031352141677813797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.6668317915378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.067519646392757, dt = 0.00031352141677813797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030069104801789913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.4746970510423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.067833167809535, dt = 0.00030069104801789913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-6.217248937900877e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002895960877387105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 937.496447315514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0681338588575535, dt = 0.0002895960877387105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-6.217248937900877e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002801074589164364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 873.7614219762127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.068423454945292, dt = 0.0002801074589164364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002721144065476214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 881.2190169780812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.068703562404209, dt = 0.0002721144065476214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.103828801926284e-15,-6.217248937900877e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002655230595243364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.1316691459858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.068975676810757, dt = 0.0002655230595243364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002602551859908363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.4539552925697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.069241199870281, dt = 0.0002602551859908363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002562471312048214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.1940728657023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.069501455056272, dt = 0.0002562471312048214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.000253448927813806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.6959826870432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.069757702187476, dt = 0.000253448927813806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (-2.2737367544323206e-13,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002518235694638903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 750.4576280478179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.07001115111529, dt = 0.0002518235694638903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-7.105427357601002e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025134643974382556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.0103981677548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.070262974684754, dt = 0.00025134643974382556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025200488959998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 752.5736819858092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.070514321124498, dt = 0.00025200488959998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002537979575126546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.0950860087088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.070766326014098, dt = 0.0002537979575126546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002567362278814436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.4356858453181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071020123971611, dt = 0.0002567362278814436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.103828801926284e-15,-5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002608418242109826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.5029572213289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071276860199492, dt = 0.0002608418242109826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.103828801926284e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026614853480512213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.3451306026253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071537702023703, dt = 0.00026614853480512213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027270206975542723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.8785719153828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071803850558508, dt = 0.00027270206975542723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,-2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028056044903752083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.6353235343672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.072076552628263, dt = 0.00028056044903752083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.81 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002897945224943427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.4611252593706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.072357113077301, dt = 0.0002897945224943427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.58 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003004886233756894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 872.3378851206365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.072646907599795, dt = 0.0003004886233756894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 240.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031274135790304407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 934.2300981958795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.072947396223171, dt = 0.00031274135790304407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003266665340191515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 914.0089304452039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.073260137581074, dt = 0.0003266665340191515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003423942330405076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 956.5575646725462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.073586804115093, dt = 0.0003423942330405076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (-5.684341886080802e-14,-2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00036007202833031516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1008.6867464802303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.073929198348134, dt = 0.00036007202833031516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-5.329070518200751e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037986635531591826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1104.8985989424882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.074289270376465, dt = 0.00037986635531591826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004019640371475426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1116.0048631330174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.074669136731781, dt = 0.0004019640371475426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004265739699853117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1265.2226173803153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.075071100768929, dt = 0.0004265739699853117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045392897125053056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.7280267421877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.075497674738914, dt = 0.00045392897125053056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004842877931158461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1376.5411405429782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.075951603710164, dt = 0.0004842877931158461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005179373019559429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1434.7248701763338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.07643589150328, dt = 0.0005179373019559429 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005551948223414433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1586.5517227941211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0769538288052365, dt = 0.0005551948223414433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (-3.552713678800501e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005964106413249829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1732.9590256776335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.077509023627578, dt = 0.0005964106413249829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006419706651161394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1798.4625329251871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.078105434268903, dt = 0.0006419706651161394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006922992156314895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1945.480284543788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0787474049340195, dt = 0.0006922992156314895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 235.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.884981308350689e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007478619486824163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2089.698793419826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.079439704149651, dt = 0.0007478619486824163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008091688685564638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285.501951844069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.080187566098334, dt = 0.0008091688685564638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 261.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.000876777405275145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2458.242835252836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.080996734966891, dt = 0.000876777405275145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-3.9968028886505635e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009512955106798018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2705.3098791253947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.081873512372166, dt = 0.0009512955106798018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 271.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010333847175105347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818.5327364156315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0828248078828455, dt = 0.0010333847175105347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001123763091607927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3192.8588080225386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.083858192600356, dt = 0.001123763091607927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (-7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012232079911036779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3528.840228212718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.084981955691965, dt = 0.0012232079911036779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.440892098500626e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013325585278231157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3637.243413819505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0862051636830685, dt = 0.0013325585278231157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.6629367034256575e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014527176049958473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4091.0817994197655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.087537722210891, dt = 0.0014527176049958473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-4.6629367034256575e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015846533817278213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4522.066417454213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.088990439815887, dt = 0.0015846533817278213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.6629367034256575e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00172939998859772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4897.421959105528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.090575093197614, dt = 0.00172939998859772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.6629367034256575e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018880572904101652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5292.101559749575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.092304493186212, dt = 0.0018880572904101652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.32 us (94.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00206178946195765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5735.120085960566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.094192550476622, dt = 0.00206178946195765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022518221112361597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6306.773781160286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.09625433993858, dt = 0.0022518221112361597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.10702591327572e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024594376528420205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7051.585932291854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.098506162049816, dt = 0.0024594376528420205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.34 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002685968603521108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7215.995160715077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.100965599702658, dt = 0.002685968603521108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029327884437394492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8462.438582957293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.103651568306179, dt = 0.0029327884437394492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 283.29 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.003201299665877485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8699.13000567857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.106584356749918, dt = 0.003201299665877485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.00349291861394476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9744.454635368786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.109785656415796, dt = 0.00349291861394476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 282.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.003809056714881817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10424.332141114213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1132785750297405, dt = 0.003809056714881817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 239.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.004151097711479554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11974.808053973808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1170876317446226, dt = 0.004151097711479554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 289.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.004520370536200302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.613e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9263.82124023427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.121238729456102, dt = 0.004520370536200302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.2%)
patch tree reduce : 572.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.004918117518723422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13300.890764862017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.125759099992302, dt = 0.004918117518723422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.005345457703193172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14491.0620348815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.130677217511026, dt = 0.005345457703193172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.495603971894525e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.005803345169330537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16520.889496281718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.136022675214218, dt = 0.005803345169330537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.467848396278896e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.006292522409904697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17640.33001635513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.141826020383549, dt = 0.006292522409904697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.006813469019861448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19410.68159985408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.148118542793454, dt = 0.006813469019861448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.440092820663267e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.007366346202541428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21206.61990908276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.154932011813315, dt = 0.007366346202541428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.447031714567174e-15,0)
sum a = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.007950937896507812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22944.922288560643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.162298358015857, dt = 0.007950937896507812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 297.96 us (97.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.450501161519128e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.008566589670001103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23066.45888411489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.170249295912365, dt = 0.008566589670001103 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-5.4539706084710815e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.009212146912263705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25741.169390773466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.178815885582366, dt = 0.009212146912263705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.009885894260124968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28094.688518772724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.188028032494629, dt = 0.009885894260124968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.467848396278896e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010585498616527762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30113.424363597645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1979139267547545, dt = 0.010585498616527762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.54 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-5.467848396278896e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.01130795852077295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32424.522065436435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.208499425371282, dt = 0.01130795852077295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.495603971894525e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.012049562987140923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34498.68108703059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.219807383892055, dt = 0.012049562987140923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.495603971894525e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-02 |
+-----------+-----------+
Info: cfl dt = 0.012805863202068172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.8% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37157.451850065634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.231856946879196, dt = 0.012805863202068172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.467848396278896e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013571660618335814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40226.33315455478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.244662810081264, dt = 0.013571660618335814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-5.495603971894525e-15,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014341014963613768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41819.93421690853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2582344706996, dt = 0.014341014963613768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015107275447339343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43331.52926963336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.272575485663213, dt = 0.015107275447339343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-02 |
+-----------+-----------+
Info: cfl dt = 0.015863137967370537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45602.28036627059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.287682761110553, dt = 0.015863137967370537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.016600730360662477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49009.925758620426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.303545899077923, dt = 0.016600730360662477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1657341758564144e-14,-5.384581669432009e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017311726702254938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48193.84208694099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.320146629438585, dt = 0.017311726702254938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1657341758564144e-14,-5.384581669432009e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.017987490349052816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54029.92010940651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.33745835614084, dt = 0.017987490349052816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 229.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.384581669432009e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.01861924389176288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56983.348284198066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.355445846489893, dt = 0.01861924389176288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 263.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.440092820663267e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.01919826249253831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56620.55206295683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.374065090381656, dt = 0.01919826249253831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.440092820663267e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019716085349507306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60063.34072878401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.393263352874194, dt = 0.019716085349507306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 278.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.440092820663267e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020164738369659093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59417.964090522815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.412979438223701, dt = 0.020164738369659093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.495603971894525e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020536959692269482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61615.51478554963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.43314417659336, dt = 0.020536959692269482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1574075031717257e-14,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020826418633825294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62184.89750149516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4536811362856294, dt = 0.020826418633825294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.551115123125783e-15,0)
sum a = (-4.440892098500626e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02102791805818811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64524.022163848225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.474507554919454, dt = 0.02102791805818811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.6066262743570405e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.02113757021970175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64638.305419913246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.495535472977642, dt = 0.02113757021970175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.74 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1593156989953002e-14,-5.6066262743570405e-15,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.021152936844320038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63778.85443259369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.516673043197344, dt = 0.021152936844320038 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1574075031717257e-14,-5.551115123125783e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021073125609082907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64365.23393991903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5378259800416645, dt = 0.021073125609082907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020898837193102426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63730.01356090548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.558899105650747, dt = 0.020898837193102426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.551115123125783e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02063235957917006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65205.45445302349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.579797942843849, dt = 0.02063235957917006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.551115123125783e-15,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.02027750910450328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64693.67864242446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.600430302423019, dt = 0.02027750910450328 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1601830607332886e-14,-5.6066262743570405e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.019839520673961043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63526.694424033085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.620707811527523, dt = 0.019839520673961043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.6066262743570405e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-02 |
+-----------+-----------+
Info: cfl dt = 0.019324892325547405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55162.13259981291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.640547332201484, dt = 0.019324892325547405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.662137425588298e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-02 |
+-----------+-----------+
Info: cfl dt = 0.018741191752405944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59149.83635033245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.659872224527032, dt = 0.018741191752405944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 288.68 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-02 |
+-----------+-----------+
Info: cfl dt = 0.01809683424878382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55835.14873915576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.678613416279438, dt = 0.01809683424878382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.717648576819556e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-02 |
+-----------+-----------+
Info: cfl dt = 0.01740084272588412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55622.19069524683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.696710250528222, dt = 0.01740084272588412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-5.828670879282072e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-02 |
+-----------+-----------+
Info: cfl dt = 0.01666260087182298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52920.34860620502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.714111093254106, dt = 0.01666260087182298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.88418203051333e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-02 |
+-----------+-----------+
Info: cfl dt = 0.015891610215358235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52210.30842807122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.730773694125928, dt = 0.015891610215358235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1435297153639112e-14,-5.828670879282072e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015097260870511943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48764.140266051174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7466653043412865, dt = 0.015097260870511943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (0.1%)
patch tree reduce : 491.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.0%)
LB compute : 2.74 ms (99.6%)
LB move op cnt : 0
LB apply : 2.46 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.828670879282072e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014288624218131221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 6.020e-03 | 0.1% | 0.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9028.800743074711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.761762565211798, dt = 0.014288624218131221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 530.00 ns (0.2%)
gen split merge : 471.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.2%)
LB compute : 279.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.828670879282072e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.01347427388644661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41134.22463290975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.776051189429929, dt = 0.01347427388644661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.828670879282072e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012662139306701537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40390.7110440598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.789525463316376, dt = 0.012662139306701537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-5.856426454897701e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011859394017898402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37892.98014655989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.802187602623078, dt = 0.011859394017898402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-5.88418203051333e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011072378930672368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36216.989384794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.814046996640976, dt = 0.011072378930672368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 294.22 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.88418203051333e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.01030655905438519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32036.202285276115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.825119375571648, dt = 0.01030655905438519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.176836406102666e-14,-5.88418203051333e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.009566510823685188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31219.856079358604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.835425934626033, dt = 0.009566510823685188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.88418203051333e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.008855936170048765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29402.77330149405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.844992445449718, dt = 0.008855936170048765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.891120924417237e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.008177698872154854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27762.86085567899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.853848381619767, dt = 0.008177698872154854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1324274851176597e-14,-5.8945903713691905e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0075338784582016025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24813.551785520405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.862026080491922, dt = 0.0075338784582016025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (73.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.898059818321144e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.006925836973882336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22861.14750064968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8695599589501235, dt = 0.006925836973882336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.88418203051333e-15,0)
sum a = (1.7763568394002505e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.006354294209632463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21249.91422308811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8764857959240056, dt = 0.006354294209632463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 252.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.856426454897701e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.005819407433527836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19393.29590792872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.882840090133638, dt = 0.005819407433527836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 272.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.828670879282072e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.005320852237701016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17301.1709215432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.888659497567166, dt = 0.005320852237701016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.828670879282072e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.004857901719209478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16322.82874829244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.893980349804867, dt = 0.004857901719209478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-5.828670879282072e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.004429501833705368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14669.447753298293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.898838251524077, dt = 0.004429501833705368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 237.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-5.828670879282072e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.004034341345912336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13526.87152212176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.903267753357782, dt = 0.004034341345912336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 237.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-5.88418203051333e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036709153297280776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11967.896512859726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.907302094703694, dt = 0.0036709153297280776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.88418203051333e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.003337581627650344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11257.944009715842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.910973010033422, dt = 0.003337581627650344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.199040866595169e-14,-5.88418203051333e-15,0)
sum a = (-7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030326100574778457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9817.002043047696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9143105916610725, dt = 0.0030326100574778457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.662137425588298e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027542244537464185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 2.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9274.588369101326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.91734320171855, dt = 0.0027542244537464185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.773159728050814e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002500637856747611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7952.142208016221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.920097426172297, dt = 0.002500637856747611 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 242.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022700813209496663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7690.931018234304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.922598064029044, dt = 0.0022700813209496663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00206082691659371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6842.6152350903385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.924868145349993, dt = 0.00206082691659371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.551115123125783e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018712055531521481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6249.669909365062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.926928972266587, dt = 0.0018712055531521481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016996202709763648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5666.108432324907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.928800177819739, dt = 0.0016996202709763648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.10702591327572e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001544555636834581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5229.207525856955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9304997980907155, dt = 0.001544555636834581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.10702591327572e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014045838480818422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4622.042473682431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.93204435372755, dt = 0.0014045838480818422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012783681056265698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4326.514945440182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.933448937575632, dt = 0.0012783681056265698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011646637631383052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3925.4819973998447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.934727305681259, dt = 0.0011646637631383052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010623177033851525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 2.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3599.986903819714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.935891969444397, dt = 0.0010623177033851525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009702663354522121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3236.5834197443883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.936954287147782, dt = 0.0009702663354522121 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 282.17 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.773159728050814e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008875325512244445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2854.4078015635796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.937924553483234, dt = 0.0008875325512244445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008132219275174957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784.792006247467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.938812086034458, dt = 0.0008132219275174957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.47e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007465184126032708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2458.7497787518996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.939625307961975, dt = 0.0007465184126032708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.773159728050814e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006866796931293522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262.3483979188445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.940371826374578, dt = 0.0006866796931293522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.217248937900877e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.000633032399747427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2032.4602870102335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.941058506067708, dt = 0.000633032399747427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005849672770674165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1927.7728199388716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.941691538467455, dt = 0.0005849672770674165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 288.72 us (97.0%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005419344155905126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1678.7508927872643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.942276505744522, dt = 0.0005419344155905126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.329070518200751e-15,0)
sum a = (-1.4210854715202004e-14,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.03e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005034386196863327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1680.0246420739388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.942818440160113, dt = 0.0005034386196863327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (-2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.000469034966047247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1540.825487737439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.943321878779799, dt = 0.000469034966047247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.217248937900877e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004383245909327688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1464.8378186700752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.943790913745847, dt = 0.0004383245909327688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004109507314663531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.591111390869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.94422923833678, dt = 0.0004109507314663531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.000386595035842793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1260.720419266955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.944640189068246, dt = 0.000386595035842793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003649741491533552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1119.2829222509592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.945026784104089, dt = 0.0003649741491533552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034583657528105774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 1.1% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1099.224077684069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.945391758253242, dt = 0.00034583657528105774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032895981064217023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.7178171478249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.945737594828524, dt = 0.00032895981064217023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031414774217356867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 998.9441802636449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.946066554639166, dt = 0.00031414774217356867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003012282996480813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 966.7513844567163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.946380702381339, dt = 0.0003012282996480813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029005135093576633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.0603393907029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.946681930680987, dt = 0.00029005135093576633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 672.00 ns (0.3%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002804868280444364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 867.9638905900434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.946971982031923, dt = 0.0002804868280444364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-5.329070518200751e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027242307152253365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 867.9212327157298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9472524688599675, dt = 0.00027242307152253365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002657653809715761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.0962729005269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.94752489193149, dt = 0.0002657653809715761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.103828801926284e-15,-6.217248937900877e-15,0)
sum a = (-2.2737367544323206e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026043475989540564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.9272729158172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.947790657312462, dt = 0.00026043475989540564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.103828801926284e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025636684382948166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.0145574763183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.948051092072357, dt = 0.00025636684382948166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.000253511001581207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.1818976681708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.948307458916187, dt = 0.000253511001581207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.381384558082573e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002518296004204585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.24684325561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.948560969917768, dt = 0.0002518296004204585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.409140133698202e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002512974271475407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.8697461503937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.948812799518189, dt = 0.0002512974271475407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.409140133698202e-15,-3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025190125810173016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.0067027263912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.949064096945336, dt = 0.00025190125810173016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 289.31 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.43689570931383e-15,-2.6645352591003757e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002536395723322752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.2455956539468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.949315998203438, dt = 0.0002536395723322752 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.43689570931383e-15,-2.6645352591003757e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025652240331530256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.0199966756021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.94956963777577, dt = 0.00025652240331530256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-8.881784197001252e-16,0)
sum a = (-2.2737367544323206e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002605713257485099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 750.8039925032574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.949826160179086, dt = 0.0002605713257485099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026581957507743824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.0187177367997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950086731504834, dt = 0.00026581957507743824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027231229849063713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.9079418136616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950352551079912, dt = 0.00027231229849063713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-2.6645352591003757e-15,0)
sum a = (-2.2737367544323206e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002801069371548793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.3963473800933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950624863378403, dt = 0.0002801069371548793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 238.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-2.6645352591003757e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002892737404340045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.0635783060603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950904970315558, dt = 0.0002892737404340045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029989641373296674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.430952377269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.951194244055992, dt = 0.00029989641373296674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-2.6645352591003757e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.12e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031207290241703074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.7845603812318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.951494140469725, dt = 0.00031207290241703074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-1.7763568394002505e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.26e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032591631495651686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.383704360565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.951806213372142, dt = 0.00032591631495651686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-1.7763568394002505e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003415559890177739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 981.6887892102476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.952132129687098, dt = 0.0003415559890177739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035913870463392456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.4365368675356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.952473685676116, dt = 0.00035913870463392456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003788300488111775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1119.005830605962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.95283282438075, dt = 0.0003788300488111775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 290.15 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.00040081593591783363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1082.21267172696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.953211654429562, dt = 0.00040081593591783363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 252.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.25e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004253042879150371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1209.8084842061585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.95361247036548, dt = 0.0004253042879150371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.48 us (93.7%)
LB move op cnt : 0
LB apply : 5.46 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045252687786290804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1251.4194564340555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.954037774653394, dt = 0.00045252687786290804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004827413391042811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1387.0012415916183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.954490301531258, dt = 0.0004827413391042811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 21.98 us (8.2%)
LB compute : 238.34 us (88.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005162333410103264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1451.443803483571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.954973042870362, dt = 0.0005162333410103264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.000553318930074085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1624.5843584124232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.955489276211373, dt = 0.000553318930074085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.94e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005943470323514041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1660.6459582949474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.956042595141447, dt = 0.0005943470323514041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-4.440892098500626e-16,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006397021096507096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1785.1237414192015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.956636942173799, dt = 0.0006397021096507096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,0,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006898069573246598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1982.169036859824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.95727664428345, dt = 0.0006898069573246598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-4.440892098500626e-16,0)
sum a = (7.105427357601002e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.000745125625863321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2042.72584966198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.957966451240774, dt = 0.000745125625863321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.8%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 305.36 us (97.2%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-8.881784197001252e-16,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008061664415605822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2109.200960781103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.958711576866638, dt = 0.0008061664415605822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-1.3322676295501878e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008734850931402771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.7477667034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.959517743308199, dt = 0.0008734850931402771 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-1.3322676295501878e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009476877411932854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2609.9675597764626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.960391228401339, dt = 0.0009476877411932854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-1.7763568394002505e-15,0)
sum a = (1.4210854715202004e-14,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010294340953940823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2952.8348594810645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.961338916142532, dt = 0.0010294340953940823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 230.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011194403905399107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3050.4738681555605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.962368350237926, dt = 0.0011194403905399107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012184821763058702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3446.8595027127467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9634877906284665, dt = 0.0012184821763058702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.325873406851315e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013273968170800351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3762.9121645778155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.964706272804772, dt = 0.0013273968170800351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014470855772250422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4032.887204135424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9660336696218526, dt = 0.0014470855772250422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 255.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015785151435669116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4254.225905219107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.967480755199078, dt = 0.0015785151435669116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017227184108979815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4941.78248646939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.969059270342645, dt = 0.0017227184108979815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.52 us (95.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018807943279943787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5064.09235487816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.970781988753543, dt = 0.0018807943279943787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.4424906541753444e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002053906571464837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5838.669315246188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.972662783081537, dt = 0.002053906571464837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.4424906541753444e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002243280783272757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6433.486257632554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.974716689653002, dt = 0.002243280783272757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.4424906541753444e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024502000759017914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6885.083776263573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.976959970436275, dt = 0.0024502000759017914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.3314683517128287e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.002675998478113346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7630.242247542604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.979410170512177, dt = 0.002675998478113346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.25 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.3314683517128287e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029220519657375526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7992.86678482075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.982086168990291, dt = 0.0029220519657375526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.4424906541753444e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.003189766698097057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9109.516341930886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.985008220956028, dt = 0.003189766698097057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.3314683517128287e-15,0)
sum a = (3.552713678800501e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034805640641789597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9888.015555689944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.988197987654125, dt = 0.0034805640641789597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.3314683517128287e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037958621368260744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10795.236177344927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.991678551718304, dt = 0.0037958621368260744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.3314683517128287e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.004137053141902292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11393.074074490769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.99547441385513, dt = 0.004137053141902292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.3314683517128287e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0045054765770724875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12133.86027228427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.999611466997033, dt = 0.0045054765770724875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-2.275957200481571e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.004902387666506671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13937.74451843557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.004116943574106, dt = 0.004902387666506671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-2.220446049250313e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.005328920918808393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14734.556996736446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.009019331240612, dt = 0.005328920918808393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0057860486712214545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16057.37506326589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0143482521594205, dt = 0.0057860486712214545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 253.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.192690473634684e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0062745346588699135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17465.72029592032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.020134300830642, dt = 0.0062745346588699135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.1788126858268697e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.006794882847856362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19397.328459109038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.026408835489511, dt = 0.006794882847856362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 250.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.1649348980190553e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0073472820185022224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20956.73241048806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.033203718337368, dt = 0.0073472820185022224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.1718737919229625e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.007931546880688515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23147.404682133147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.04055100035587, dt = 0.007931546880688515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.48 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.1718737919229625e-15,0)
sum a = (-1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.008547056844877094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23408.78582242589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.048482547236558, dt = 0.008547056844877094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-2.1788126858268697e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.009192693953604987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26761.37958281841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0570296040814355, dt = 0.009192693953604987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.1788126858268697e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.009866781887623813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28078.51112534645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.066222298035041, dt = 0.009866781887623813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.220446049250313e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.010567028381032196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27895.90581742667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.076089079922665, dt = 0.010567028381032196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.0%)
patch tree reduce : 472.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 289.20 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.220446049250313e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.011290473786795539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.386e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27451.99649552759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.086656108303697, dt = 0.011290473786795539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 301.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 223.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.248201624865942e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.012033448897317367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32819.74013746499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.097946582090493, dt = 0.012033448897317367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.275957200481571e-15,0)
sum a = (-8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-02 |
+-----------+-----------+
Info: cfl dt = 0.012791545407337407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36316.429447162714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.10998003098781, dt = 0.012791545407337407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 292.93 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.659739592076221e-15,-2.275957200481571e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013559602566612086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37756.99471677038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.122771576395147, dt = 0.013559602566612086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-2.275957200481571e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014331713563295148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41376.168540445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.136331178961759, dt = 0.014331713563295148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-2.275957200481571e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015101254962373219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42916.960293883414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.150662892525054, dt = 0.015101254962373219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-2.275957200481571e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-02 |
+-----------+-----------+
Info: cfl dt = 0.015860942059189573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45992.89171464407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.165764147487428, dt = 0.015860942059189573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-2.275957200481571e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.01660291226932201 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47375.04711675581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.181625089546618, dt = 0.01660291226932201 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-15,-2.275957200481571e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017318837653168516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51093.00199049887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.19822800181594, dt = 0.017318837653168516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 275.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (71.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-15,-2.275957200481571e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.018000066379570967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52159.71852961049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.215546839469108, dt = 0.018000066379570967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.3%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-15,-2.1649348980190553e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018637791408156294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55124.36876574226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.233546905848679, dt = 0.018637791408156294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-15,-2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019223242985407694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57295.68025707092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.252184697256835, dt = 0.019223242985407694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-2.1649348980190553e-15,0)
sum a = (4.440892098500626e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019747899805228678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53494.194987943345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.271407940242243, dt = 0.019747899805228678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.0%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 338.27 us (97.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-2.1649348980190553e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020203712007067737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53713.73600919897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.291155840047471, dt = 0.020203712007067737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.82 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.1601392309949e-15,-2.1094237467877974e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020583327717055216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57377.98234597793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.311359552054539, dt = 0.020583327717055216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.1601392309949e-15,-2.1094237467877974e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.02088031372861337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61410.943566890106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.331942879771595, dt = 0.02088031372861337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.132383655379272e-15,-2.1094237467877974e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.02108936030667636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61318.95560218662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.352823193500209, dt = 0.02108936030667636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.132383655379272e-15,-2.1094237467877974e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.021206460094448917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64760.707288517246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.373912553806885, dt = 0.021206460094448917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.125444761475364e-15,-2.1094237467877974e-15,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.021229051769982042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62885.76542486122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.395119013901334, dt = 0.021229051769982042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.125444761475364e-15,-2.1094237467877974e-15,0)
sum a = (-4.440892098500626e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.02115612045096486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64374.35151234036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.416348065671316, dt = 0.02115612045096486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.132383655379272e-15,-2.0539125955565396e-15,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.02098824882445696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63189.69479883172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.437504186122281, dt = 0.02098824882445696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 472.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.104628079763643e-15,-1.9984014443252818e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.020727615463445006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64199.51718727275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.458492434946738, dt = 0.020727615463445006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.104628079763643e-15,-1.9984014443252818e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.02037793960731186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61828.056393397565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.4792200504101825, dt = 0.02037793960731186 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.104628079763643e-15,-1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-02 |
+-----------+-----------+
Info: cfl dt = 0.019944374611685356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63128.52230548307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.499597990017494, dt = 0.019944374611685356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.049116928532385e-15,-2.0539125955565396e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-02 |
+-----------+-----------+
Info: cfl dt = 0.019433355080207767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55915.36704678395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.51954236462918, dt = 0.019433355080207767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 247.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-02 |
+-----------+-----------+
Info: cfl dt = 0.01885240515008582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57901.126479181745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.538975719709388, dt = 0.01885240515008582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 268.72 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-2.1649348980190553e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-02 |
+-----------+-----------+
Info: cfl dt = 0.018209917321577798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54934.8519354731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.557828124859474, dt = 0.018209917321577798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.882583474838611e-15,-2.1649348980190553e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-02 |
+-----------+-----------+
Info: cfl dt = 0.017514912459786605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54664.73739666725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.576038042181051, dt = 0.017514912459786605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 271.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.882583474838611e-15,-2.1649348980190553e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-02 |
+-----------+-----------+
Info: cfl dt = 0.016776792084246435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51494.33869390204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.593552954640837, dt = 0.016776792084246435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.882583474838611e-15,-2.1649348980190553e-15,0)
sum a = (8.881784197001252e-16,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-02 |
+-----------+-----------+
Info: cfl dt = 0.016005093799754035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50536.56543973342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.610329746725084, dt = 0.016005093799754035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.771561172376096e-15,-2.1094237467877974e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-02 |
+-----------+-----------+
Info: cfl dt = 0.015209259781191161 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47686.71989915692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.626334840524838, dt = 0.015209259781191161 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-2.1094237467877974e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-02 |
+-----------+-----------+
Info: cfl dt = 0.01439842673225827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46862.448657537396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.641544100306029, dt = 0.01439842673225827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-2.1094237467877974e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-02 |
+-----------+-----------+
Info: cfl dt = 0.013581243857474815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41865.22209094547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.655942527038287, dt = 0.013581243857474815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327471962526033e-15,-2.0816681711721685e-15,0)
sum a = (8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-02 |
+-----------+-----------+
Info: cfl dt = 0.012765723299808327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40416.659753370295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.669523770895762, dt = 0.012765723299808327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 262.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-2.0816681711721685e-15,0)
sum a = (-8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.011959125380641335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37929.412636074376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.682289494195571, dt = 0.011959125380641335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.8833827526759706e-15,-2.0816681711721685e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011167878991321822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36842.527555451656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.694248619576212, dt = 0.011167878991321822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.8833827526759706e-15,-2.0816681711721685e-15,0)
sum a = (1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010397535749750315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33608.77642956262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7054164985675335, dt = 0.010397535749750315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 275.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.8833827526759706e-15,-2.0816681711721685e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.009652755134731237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29972.621639773366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.715814034317284, dt = 0.009652755134731237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 296.44 us (97.1%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.0816681711721685e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.00893731678733251 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.341e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25904.820980518376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.725466789452016, dt = 0.00893731678733251 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.0747292772682613e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.008254155526757082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27580.50409228239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7344041062393485, dt = 0.008254155526757082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 267.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.0712598303163077e-15,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.007605414341903049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24186.879319661595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.742658261766105, dt = 0.007605414341903049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.067790383364354e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0069925106403518735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22919.514538299634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.750263676108008, dt = 0.0069925106403518735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.0539125955565396e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.00641621130226164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20672.339285405422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.75725618674836, dt = 0.00641621130226164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-2.0539125955565396e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.00587671253091131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19235.089198141228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7636723980506215, dt = 0.00587671253091131 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.71 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-1.9984014443252818e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.005373721049642102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17100.27143218159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.769549110581533, dt = 0.005373721049642102 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-2.0539125955565396e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.004906533808640436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16216.026906328323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.774922831631175, dt = 0.004906533808640436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 340.42 us (97.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.004474113986166368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.4% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13691.58051277037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.779829365439815, dt = 0.004474113986166368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-1.942890293094024e-15,0)
sum a = (-3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.004075161660353807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13550.039791837346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.784303479425981, dt = 0.004075161660353807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-1.9984014443252818e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.003708178063614502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12255.746461699768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.788378641086335, dt = 0.003708178063614502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.37 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-1.9984014443252818e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.003371522796124599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10750.237786704907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.792086819149949, dt = 0.003371522796124599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.887379141862766e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.003063463760586371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9813.046189135624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.795458341946073, dt = 0.003063463760586371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027822198869009366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9387.721180983384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.79852180570666, dt = 0.0027822198869009366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.887379141862766e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025259969469186624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8240.209882701445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.80130402559356, dt = 0.0025259969469186624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002293016923620905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7643.829693852369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.803830022540478, dt = 0.002293016923620905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020815415052857817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7012.760742350192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.806123039464099, dt = 0.0020815415052857817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.9984014443252818e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018898903334160513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6369.682617922556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8082045809693845, dt = 0.0018898903334160513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-1.7763568394002505e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.001716454653305293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5758.4031948108595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.810094471302801, dt = 0.001716454653305293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-1.9984014443252818e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015597070072058804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5288.02478310349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.811810925956106, dt = 0.0015597070072058804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.02 us (9.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.26 us (88.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.9984014443252818e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014182075801933015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4484.81635311877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.813370632963312, dt = 0.0014182075801933015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-1.3322676295501878e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001290607764830558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4286.140157874139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.814788840543505, dt = 0.001290607764830558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.7763568394002505e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011756514582129598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3758.1365326000778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.816079448308336, dt = 0.0011756514582129598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-1.3322676295501878e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010721745483239513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3523.8240442795445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.817255099766548, dt = 0.0010721745483239513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-1.3322676295501878e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009791029891976718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3234.9629336939092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.818327274314872, dt = 0.0009791029891976718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-8.881784197001252e-16,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008954498085845626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3014.3095038693577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.81930637730407, dt = 0.0008954498085845626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-4.440892098500626e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008203113393075994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2711.6536739544727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.820201827112655, dt = 0.0008203113393075994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-4.440892098500626e-16,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007528629173165167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2504.3766040816004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.821022138451962, dt = 0.0007528629173165167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.27 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006923542461537288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205.1918685133887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.821775001369279, dt = 0.0006923542461537288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.38e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006381045893353966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2081.2808008843117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.822467355615433, dt = 0.0006381045893353966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 263.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,1.7763568394002505e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005894979189608454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1850.6215432268004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8231054602047685, dt = 0.0005894979189608454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,1.7763568394002505e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.000545978120451574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1811.0983359880415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.823694958123729, dt = 0.000545978120451574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,8.881784197001252e-16,0)
sum a = (-1.4210854715202004e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005070443293322368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1573.8334369938275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.824240936244181, dt = 0.0005070443293322368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.2%)
LB compute : 231.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,8.881784197001252e-16,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004722464559816448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1552.933177131419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.824747980573513, dt = 0.0004722464559816448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.29 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,8.881784197001252e-16,0)
sum a = (2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.41e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044118093785680117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.85905257266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.825220227029495, dt = 0.00044118093785680117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,8.881784197001252e-16,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.00041348674538215814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1316.9645755157023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.825661407967352, dt = 0.00041348674538215814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-04 |
+-----------+-----------+
Info: cfl dt = 0.00038884165707265097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1248.0536022716287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.826074894712733, dt = 0.00038884165707265097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003669588111252048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1168.0239352682136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.826463736369806, dt = 0.0003669588111252048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.18 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,8.881784197001252e-16,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-04 |
+-----------+-----------+
Info: cfl dt = 0.00034758353430815067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.931953711121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.826830695180932, dt = 0.00034758353430815067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,0,0)
sum a = (1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003304904441792397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.0806114041804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.82717827871524, dt = 0.0003304904441792397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,0,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.15e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003154808171881246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 981.2855881328996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.82750876915942, dt = 0.0003154808171881246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030238021282372044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.2378855932835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.827824249976608, dt = 0.00030238021282372044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.59 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-8.881784197001252e-16,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029103634244174623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.57137090595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8281266301894314, dt = 0.00029103634244174623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 712.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-1.7763568394002505e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028131717057638744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 892.2211478293668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.828417666531873, dt = 0.00028131717057638744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.90 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002731092362546683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.6471224280499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.828698983702449, dt = 0.0002731092362546683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3306690738754696e-15,-8.881784197001252e-16,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026631618197051635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.2474830095941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.828972092938704, dt = 0.00026631618197051635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 258.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-8.881784197001252e-16,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026085747843737503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.5687090884725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.829238409120674, dt = 0.00026085747843737503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-1.7763568394002505e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002566673339421102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.8614899290359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.829499266599112, dt = 0.0002566673339421102 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 272.51 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-1.7763568394002505e-15,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.000253693778003331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 739.156981008832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.829755933933054, dt = 0.000253693778003331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.885780586188048e-15,-1.7763568394002505e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025189791004177295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.5830812556521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.830009627711058, dt = 0.00025189791004177295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.969047313034935e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025125330485765464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.5832351309512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8302615256211, dt = 0.00025125330485765464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.969047313034935e-15,-8.881784197001252e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.000251745567847327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.8072367230958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.830512778925957, dt = 0.000251745567847327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,0,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.000253372034053423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 749.33506545563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.830764524493804, dt = 0.000253372034053423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107825191113079e-15,-8.881784197001252e-16,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002561416063089023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.0039669884828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.831017896527857, dt = 0.0002561416063089023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-1.7763568394002505e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026007472888957105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 727.7858628342608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.831274038134167, dt = 0.00026007472888957105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-1.7763568394002505e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002652034942183727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 765.9676144448581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.831534112863056, dt = 0.0002652034942183727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 360.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-2.6645352591003757e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.72e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027157188125611357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.3613717950738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.831799316357275, dt = 0.00027157188125611357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-2.6645352591003757e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027923612525604835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.0999828468615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832070888238531, dt = 0.00027923612525604835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 341.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-2.6645352591003757e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.88e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028826521954237696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.3139608329109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832350124363787, dt = 0.00028826521954237696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-2.6645352591003757e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002987415508823866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 877.3179095900122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832638389583329, dt = 0.0002987415508823866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.25 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-2.6645352591003757e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003107616708438723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.4592855713715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832937131134212, dt = 0.0003107616708438723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032443720624569854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.3183940319417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833247892805056, dt = 0.00032443720624569854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.5%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-1.7763568394002505e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003398959123981934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.6447175982975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833572330011301, dt = 0.0003398959123981934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-2.6645352591003757e-15,0)
sum a = (-5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035728287326484694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.2233482598642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.833912225923699, dt = 0.00035728287326484694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-3.552713678800501e-15,0)
sum a = (-5.684341886080802e-14,-2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003767618529250366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.6476963111465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.834269508796964, dt = 0.0003767618529250366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.440892098500626e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003985168027397547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1124.0144945741317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8346462706498885, dt = 0.0003985168027397547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.00042275352837099593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1172.408050312798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.835044787452628, dt = 0.00042275352837099593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004497015202236991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1276.9888035854947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.835467540980999, dt = 0.0004497015202236991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.80e-04 |
+-----------+-----------+
Info: cfl dt = 0.00047961594989944396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.1943247030435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.835917242501223, dt = 0.00047961594989944396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-3.552713678800501e-15,0)
sum a = (-1.4210854715202004e-14,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.000512779833794214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1470.206121089401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.836396858451122, dt = 0.000512779833794214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.99 us (97.0%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-3.552713678800501e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005495063629460438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1505.246653701025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.836909638284917, dt = 0.0005495063629460438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-3.552713678800501e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.90e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005901413955357251 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1614.3223601750892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8374591446478625, dt = 0.0005901413955357251 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-4.440892098500626e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.35e-04 |
+-----------+-----------+
Info: cfl dt = 0.000635066104943211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1789.6645721448763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.838049286043399, dt = 0.000635066104943211 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.5%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 498.37 us (98.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-3.552713678800501e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006846997718265231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.451e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1575.7812454651446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.838684352148341, dt = 0.0006846997718265231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.21 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-3.1086244689504383e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007395027031655132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2006.8301047212801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.839369051920168, dt = 0.0007395027031655132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-3.1086244689504383e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.00e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007999792544313393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2263.7876351795217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.840108554623334, dt = 0.0007999792544313393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 258.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-3.1086244689504383e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008666809228219557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2354.619192567731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.840908533877765, dt = 0.0008666809228219557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-3.1086244689504383e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009402094696517981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2634.4353215892143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.841775214800587, dt = 0.0009402094696517981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 283.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-3.552713678800501e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010212200183019446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2609.2266883127236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8427154242702395, dt = 0.0010212200183019446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.001110424060428626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3051.3731921853005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8437366442885414, dt = 0.001110424060428626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-3.552713678800501e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012085922872078127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3316.695305418563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.84484706834897, dt = 0.0012085922872078127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-3.9968028886505635e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013165571441016678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3523.455707866981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8460556606361775, dt = 0.0013165571441016678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.218847493575595e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014352149868521445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4007.916478529229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.847372217780279, dt = 0.0014352149868521445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.218847493575595e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015655276930875456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4307.504366608019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.848807432767131, dt = 0.0015655276930875456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-3.9968028886505635e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017085235581145548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4667.384698486356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.850372960460219, dt = 0.0017085235581145548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-3.9968028886505635e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018652972753377501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5109.857861419798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.852081484018334, dt = 0.0018652972753377501 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.218847493575595e-15,0)
sum a = (1.4210854715202004e-14,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020370087716516682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5739.8324749026215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.853946781293672, dt = 0.0020370087716516682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.00222488063666274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6144.7147133710605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8559837900653235, dt = 0.00222488063666274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.218847493575595e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002430193852577282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6595.170110160782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.858208670701987, dt = 0.002430193852577282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.3298697960381105e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026542815002399975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7398.413433525479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.860638864554564, dt = 0.0026542815002399975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.3298697960381105e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028985200877394636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7729.2223152237575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8632931460548035, dt = 0.0028985200877394636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031643181233061294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8685.824901141694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.866191666142543, dt = 0.0031643181233061294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.003453101536546287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9612.753308019583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.869355984265849, dt = 0.003453101536546287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.00376629554460111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10499.091260530102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.872809085802396, dt = 0.00376629554460111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0041053025664202466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11589.522894182184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8765753813469965, dt = 0.0041053025664202466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.496403249731884e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.004471475813416238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12590.227778848894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8806806839134165, dt = 0.004471475813416238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.496403249731884e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.004866088233264422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13760.186527211212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.885152159726832, dt = 0.004866088233264422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.496403249731884e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0052902965608603875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14399.74028045999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.890018247960096, dt = 0.0052902965608603875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.468647674116255e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.005745100341915329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15940.456491452607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.895308544520957, dt = 0.005745100341915329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 249.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.496403249731884e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0062312959456234844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17281.57243594322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9010536448628725, dt = 0.0062312959456234844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.468647674116255e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0067494257778496335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18800.722945005447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.907284940808496, dt = 0.0067494257778496335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.4825254619240695e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.007299723148612608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20337.01450684711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.914034366586345, dt = 0.007299723148612608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-4.485994908876023e-15,0)
sum a = (-1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.007882053538446482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21337.945905285636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.921334089734958, dt = 0.007882053538446482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.4911990793039536e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.008495853345676622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23398.603391457822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.929216143273404, dt = 0.008495853345676622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.489464355827977e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.009140067574951652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25708.7841244205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.937711996619081, dt = 0.009140067574951652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.5102810375396984e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.009813088335752434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26762.7751532162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.946852064194032, dt = 0.009813088335752434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.496403249731884e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.0105126964414114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29383.021007878047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9566651525297845, dt = 0.0105126964414114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.524158825347513e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.011236008811249086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31074.917676269404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.967177848971196, dt = 0.011236008811249086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-4.524158825347513e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-02 |
+-----------+-----------+
Info: cfl dt = 0.011979434750832829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34262.595087399386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.978413857782445, dt = 0.011979434750832829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 232.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.524158825347513e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-02 |
+-----------+-----------+
Info: cfl dt = 0.012738644481781317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36662.729229805074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.990393292533278, dt = 0.012738644481781317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 246.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.524158825347513e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-02 |
+-----------+-----------+
Info: cfl dt = 0.013508553471533468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38334.57896724758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.003131937015059, dt = 0.013508553471533468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 229.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.218847493575595e-15,-4.551914400963142e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-02 |
+-----------+-----------+
Info: cfl dt = 0.014283326130732832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40519.44743266073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.016640490486592, dt = 0.014283326130732832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9968028886505635e-15,-4.496403249731884e-15,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-02 |
+-----------+-----------+
Info: cfl dt = 0.015056402257487146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42103.58705272137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.030923816617324, dt = 0.015056402257487146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-4.496403249731884e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-02 |
+-----------+-----------+
Info: cfl dt = 0.01582054917483965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43902.367376506205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.045980218874812, dt = 0.01582054917483965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-4.496403249731884e-15,0)
sum a = (1.7763568394002505e-15,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-02 |
+-----------+-----------+
Info: cfl dt = 0.01656794180178799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47842.955882905706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.061800768049652, dt = 0.01656794180178799 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-4.551914400963142e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-02 |
+-----------+-----------+
Info: cfl dt = 0.017290271906865023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50106.55685609483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.078368709851441, dt = 0.017290271906865023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.551914400963142e-15,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-02 |
+-----------+-----------+
Info: cfl dt = 0.01797888652655355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53065.542181527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.095658981758305, dt = 0.01797888652655355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.6629367034256575e-15,0)
sum a = (-8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018624954025609302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54726.49978784878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.113637868284858, dt = 0.018624954025609302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.6074255521944e-15,0)
sum a = (-8.881784197001252e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019219654599755304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56451.13407046389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.132262822310468, dt = 0.019219654599755304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.774758283725532e-15,-4.551914400963142e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-02 |
+-----------+-----------+
Info: cfl dt = 0.0197543902704196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58749.700955590575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.151482476910223, dt = 0.0197543902704196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.6074255521944e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020221007720032408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58298.81130754647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.171236867180642, dt = 0.020221007720032408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.6074255521944e-15,0)
sum a = (4.440892098500626e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020612025807449825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62007.870525340986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.191457874900674, dt = 0.020612025807449825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6637359812630166e-15,-4.6629367034256575e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020920858435720398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61291.958064630715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.212069900708125, dt = 0.020920858435720398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.635980405647388e-15,-4.718447854656915e-15,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.02114202275959296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64402.36690586263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.232990759143846, dt = 0.02114202275959296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.635980405647388e-15,-4.718447854656915e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.021271322633277388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61574.22350681153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.254132781903438, dt = 0.021271322633277388 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6290415117434804e-15,-4.829470157119431e-15,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.021305997783157456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62773.44572572352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.275404104536715, dt = 0.021305997783157456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6290415117434804e-15,-4.829470157119431e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.02124483046247835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64553.794429776965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.296710102319873, dt = 0.02124483046247835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.608224830031759e-15,-4.773959005888173e-15,0)
sum a = (4.440892098500626e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.021088203258038365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64754.482409522374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.317954932782351, dt = 0.021088203258038365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.608224830031759e-15,-4.773959005888173e-15,0)
sum a = (4.440892098500626e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-02 |
+-----------+-----------+
Info: cfl dt = 0.020838104159597564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64617.97950656382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.33904313604039, dt = 0.020838104159597564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.608224830031759e-15,-4.829470157119431e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.020498077799860653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64113.572107025684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.359881240199988, dt = 0.020498077799860653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.608224830031759e-15,-4.773959005888173e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-02 |
+-----------+-----------+
Info: cfl dt = 0.02007312471256574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61627.34847228209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.380379317999848, dt = 0.02007312471256574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.773959005888173e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-02 |
+-----------+-----------+
Info: cfl dt = 0.019569553303708423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59824.13601244168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.400452442712414, dt = 0.019569553303708423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.718447854656915e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-02 |
+-----------+-----------+
Info: cfl dt = 0.018994791756325374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55572.1229800299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.420021996016123, dt = 0.018994791756325374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4416913763379853e-15,-4.718447854656915e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-02 |
+-----------+-----------+
Info: cfl dt = 0.018357169092952215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56895.90214114664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.439016787772449, dt = 0.018357169092952215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4416913763379853e-15,-4.718447854656915e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-02 |
+-----------+-----------+
Info: cfl dt = 0.017665675954401605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56370.32657849737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.457373956865402, dt = 0.017665675954401605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 228.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3306690738754696e-15,-4.829470157119431e-15,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-02 |
+-----------+-----------+
Info: cfl dt = 0.016929716238523723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53774.517765903496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.475039632819803, dt = 0.016929716238523723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.219646771412954e-15,-4.829470157119431e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-02 |
+-----------+-----------+
Info: cfl dt = 0.01615886057094432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50295.2493667893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.491969349058326, dt = 0.01615886057094432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.219646771412954e-15,-4.829470157119431e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-02 |
+-----------+-----------+
Info: cfl dt = 0.015362611714163399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46963.00325379906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.508128209629271, dt = 0.015362611714163399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.829470157119431e-15,0)
sum a = (1.7763568394002505e-15,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-02 |
+-----------+-----------+
Info: cfl dt = 0.014550190582833593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44599.764016093235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.523490821343435, dt = 0.014550190582833593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.773959005888173e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-02 |
+-----------+-----------+
Info: cfl dt = 0.013730349683034609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.480e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35391.542422809835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.538041011926268, dt = 0.013730349683034609 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.886579864025407e-15,-4.801714581503802e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-02 |
+-----------+-----------+
Info: cfl dt = 0.01291121871309111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42564.42571515816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.551771361609303, dt = 0.01291121871309111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.67 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.801714581503802e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-02 |
+-----------+-----------+
Info: cfl dt = 0.012100184933007466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37704.23622961429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.564682580322394, dt = 0.012100184933007466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.801714581503802e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.011303808889889896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36223.33871532756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.576782765255402, dt = 0.011303808889889896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.801714581503802e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.05e-02 |
+-----------+-----------+
Info: cfl dt = 0.010527774306500415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33652.3039294132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.588086574145292, dt = 0.010527774306500415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.886579864025407e-15,-4.829470157119431e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.009776869488291415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31378.88945470385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.598614348451791, dt = 0.009776869488291415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.82 us (0.7%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 236.37 us (94.8%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.829470157119431e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.009054996528309614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29583.448336658214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.608391217940083, dt = 0.009054996528309614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.886579864025407e-15,-4.822531263215524e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.008365203898132839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27707.38473051597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.617446214468393, dt = 0.008365203898132839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.8155923693116165e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.007709737683457917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24271.434677531797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.625811418366526, dt = 0.007709737683457917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.8155923693116165e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.007090106708614483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22770.240213409354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.633521156049984, dt = 0.007090106708614483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.8155923693116165e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.006507157034309212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21189.93962154572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.640611262758599, dt = 0.006507157034309212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.801714581503802e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0059611517405681064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19834.223754496452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.647118419792909, dt = 0.0059611517405681064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.773959005888173e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.00545185245650819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17907.481092169644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.653079571533477, dt = 0.00545185245650819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.773959005888173e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004978599710893495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16687.95359181759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.658531423989984, dt = 0.004978599710893495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.829470157119431e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.004540389802635887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15204.229809975604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.663510023700878, dt = 0.004540389802635887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.829470157119431e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.004135946489817661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13768.50387310309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.668050413503513, dt = 0.004135946489817661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.003763786342001471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12652.131032811518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.672186359993331, dt = 0.003763786342001471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.884981308350689e-15,0)
sum a = (-3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034222770764616444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11005.124898336106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.675950146335332, dt = 0.0034222770764616444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.9960036108132044e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.003109688596248626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10494.965542873138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.679372423411793, dt = 0.003109688596248626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.9960036108132044e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.002824236765414924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9190.247106206625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.682482112008042, dt = 0.002824236765414924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.884981308350689e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025641201981550263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8271.256940738958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.685306348773457, dt = 0.0025641201981550263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.6629367034256575e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002327550511334414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7654.509047226543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.687870468971612, dt = 0.002327550511334414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002112776603148716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6933.487330920903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.690198019482946, dt = 0.002112776603148716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.6629367034256575e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019181035844938006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6482.053132527105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.692310796086094, dt = 0.0019181035844938006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 238.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.6629367034256575e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001741907013988054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5805.188392080998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.694228899670588, dt = 0.001741907013988054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.884981308350689e-15,0)
sum a = (7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015826430817398995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5238.8268404433375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.695970806684576, dt = 0.0015826430817398995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.884981308350689e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014388553591300798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4681.3179913018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.697553449766316, dt = 0.0014388553591300798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013091786890984936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4322.040662229063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.698992305125445, dt = 0.0013091786890984936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011923407394553573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3973.271736037047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.700301483814544, dt = 0.0011923407394553573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (1.4%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.884981308350689e-15,0)
sum a = (-7.105427357601002e-15,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010871616851419953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3633.9603199796193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.701493824554, dt = 0.0010871616851419953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.884981308350689e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009925524276270035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3303.3996918494017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.702580986239141, dt = 0.0009925524276270035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (0.8%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 375.01 us (97.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-4.884981308350689e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.00090751170327535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.343e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2661.478118231922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.703573538666769, dt = 0.00090751170327535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.51 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-4.884981308350689e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008311223793189046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2676.848006475529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.704481050370044, dt = 0.0008311223793189046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-4.884981308350689e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.000762547187097707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2408.077061886465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.705312172749363, dt = 0.000762547187097707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007010240981440673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2254.2116032174067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.70607471993646, dt = 0.0007010240981440673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-16,-5.329070518200751e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006458615096825471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2090.3265284251297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.706775744034603, dt = 0.0006458615096825471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-5.773159728050814e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.96e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005964333721811565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1944.3329847823231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.707421605544285, dt = 0.0005964333721811565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-5.329070518200751e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005521743624878288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1825.6627544553335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.708018038916466, dt = 0.0005521743624878288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-5.329070518200751e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005125751814754462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1653.7709369958359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.708570213278954, dt = 0.0005125751814754462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-5.329070518200751e-15,0)
sum a = (-2.842170943040401e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004771780345832783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1524.1441499303344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.70908278846043, dt = 0.0004771780345832783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004455723367371424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1450.1871357838545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.709559966495013, dt = 0.0004455723367371424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (-5.684341886080802e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.17e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004173906694064948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.0476052738352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71000553883175, dt = 0.0004173906694064948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 236.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039230500658219553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1236.7324343865305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.710422929501156, dt = 0.00039230500658219553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003700232178305142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1168.9873372875481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.710815234507738, dt = 0.0003700232178305142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.50e-04 |
+-----------+-----------+
Info: cfl dt = 0.00035028584992968255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1103.4160546818114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.711185257725568, dt = 0.00035028584992968255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-4.440892098500626e-15,0)
sum a = (0,2.2737367544323206e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003328631835965072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.345556056954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.711535543575497, dt = 0.0003328631835965072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-04 |
+-----------+-----------+
Info: cfl dt = 0.00031755255817370314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.7823061690486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.711868406759093, dt = 0.00031755255817370314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030417595462343185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.8567344811005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.712185959317267, dt = 0.00030417595462343185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029257782554501855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 917.0581310376214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71249013527189, dt = 0.00029257782554501855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-3.552713678800501e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002826231600237445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 890.1563503004571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.712782713097436, dt = 0.0002826231600237445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7763568394002505e-15,-3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002741957707713309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 846.7644524607721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71306533625746, dt = 0.0002741957707713309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9984014443252818e-15,-3.552713678800501e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026719679111149314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.5639384025485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71333953202823, dt = 0.00026719679111149314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-3.552713678800501e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-04 |
+-----------+-----------+
Info: cfl dt = 0.000261543369792586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 816.7048579047704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.713606728819343, dt = 0.000261543369792586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.48 us (96.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.440892098500626e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025716755228993887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.0305924343518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.713868272189135, dt = 0.00025716755228993887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-3.552713678800501e-15,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002540153381254151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.7228356675065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.714125439741425, dt = 0.0002540153381254151 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3314683517128287e-15,-3.552713678800501e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025204590472700984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 782.7470650910191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71437945507955, dt = 0.00025204590472700984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3037127760972e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025123098943416434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 751.8926535743908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.714631500984277, dt = 0.00025123098943416434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3314683517128287e-15,-4.440892098500626e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002515544223912342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.9643157537421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.714882731973711, dt = 0.0002515544223912342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3869795029440866e-15,-5.329070518200751e-15,0)
sum a = (0,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002530118042357598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.9657132704014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.715134286396102, dt = 0.0002530118042357598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4424906541753444e-15,-4.440892098500626e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025561032365900853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.5246753022111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.715387298200339, dt = 0.00025561032365900853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-04 |
+-----------+-----------+
Info: cfl dt = 0.000259368711077036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.987716695243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.715642908523998, dt = 0.000259368711077036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-5.329070518200751e-15,0)
sum a = (-2.2737367544323206e-13,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026431732578748295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.2377640844669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.715902277235076, dt = 0.00026431732578748295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027049837508854013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.4902426380712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.716166594560864, dt = 0.00027049837508854013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-5.329070518200751e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002779662648907811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.9936759136385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.716437092935953, dt = 0.0002779662648907811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002867880823484956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.0310376201073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.716715059200844, dt = 0.0002867880823484956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002970442119623091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.7996010270816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.717001847283193, dt = 0.0002970442119623091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030882908744481294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.3514359644012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.717298891495155, dt = 0.00030882908744481294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032225208237837846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 928.3610042947737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.717607720582599, dt = 0.00032225208237837846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.37e-04 |
+-----------+-----------+
Info: cfl dt = 0.00033743854330824216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.6823330842104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.717929972664978, dt = 0.00033743854330824216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-4.440892098500626e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003545309693785791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.954355219004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.718267411208286, dt = 0.0003545309693785791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-4.440892098500626e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003736903429031347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.3844458286073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.718621942177665, dt = 0.0003736903429031347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6645352591003757e-15,-5.329070518200751e-15,0)
sum a = (5.684341886080802e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039509761532680157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1123.656374751645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.718995632520567, dt = 0.00039509761532680157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1086244689504383e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004189553528340764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1210.4222199517872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.719390730135894, dt = 0.0004189553528340764 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-04 |
+-----------+-----------+
Info: cfl dt = 0.00044548954533928044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.4598074992905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.719809685488729, dt = 0.00044548954533928044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.552713678800501e-15,-5.329070518200751e-15,0)
sum a = (-2.842170943040401e-14,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.75e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004749515816860043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1360.1073009076158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.720255175034067, dt = 0.0004749515816860043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.08e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005076203925120673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1421.978792949273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.720730126615754, dt = 0.0005076203925120673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.329070518200751e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.44e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005438047603110023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520.2564714484533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.721237747008265, dt = 0.0005438047603110023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 228.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005838457936373105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1639.389912859066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.721781551768576, dt = 0.0005838457936373105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.440892098500626e-15,-5.329070518200751e-15,0)
sum a = (-1.7763568394002505e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.28e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006281195590410188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1754.8877541158308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.722365397562212, dt = 0.0006281195590410188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.77e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006770398600422097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1879.865797866156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.722993517121253, dt = 0.0006770398600422097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.31e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007310611471170896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2078.736504318894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.723670556981295, dt = 0.0007310611471170896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007906815360972282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221.8002282916655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.724401618128413, dt = 0.0007906815360972282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.329070518200751e-15,0)
sum a = (0,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008564459044023089 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2396.8722095960843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.72519229966451, dt = 0.0008564459044023089 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.29e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009289490249422854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2631.9114069061197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.726048745568912, dt = 0.0009289490249422854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-6.661338147750939e-15,0)
sum a = (-7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010088386861387161 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2741.2958750366633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.726977694593854, dt = 0.0010088386861387161 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-6.661338147750939e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.001096818733128669 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037.971743532385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.727986533279992, dt = 0.001096818733128669 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-6.661338147750939e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011936519496389074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3274.237808109836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.72908335201312, dt = 0.0011936519496389074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.105427357601002e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013001626820865072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3624.2474851265583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.730277003962758, dt = 0.0013001626820865072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 281.72 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014172390870479071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3787.5894730418267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.731577166644845, dt = 0.0014172390870479071 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015458348602769628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4216.9589767776315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.732994405731892, dt = 0.0015458348602769628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016869702799694904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4541.449146834386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.73454024059217, dt = 0.0016869702799694904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (1.4210854715202004e-14,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018417323691176052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5174.296933375165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.736227210872139, dt = 0.0018417323691176052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.52 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.549516567451064e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002011273951889195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5353.116709786148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.738068943241256, dt = 0.002011273951889195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (-7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.00219681134753965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6186.219369843685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.740080217193146, dt = 0.00219681134753965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 285.85 us (97.1%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.002399620413220196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6237.648251627526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.742277028540686, dt = 0.002399620413220196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.884981308350689e-15,-7.771561172376096e-15,0)
sum a = (0,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026210306153308213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7347.163739747387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.744676648953906, dt = 0.0026210306153308213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.74 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.66053886991358e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028624167793182063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7631.840712535381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.747297679569236, dt = 0.0028624167793182063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.771561172376096e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031251881420515278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8766.10070764229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.750160096348555, dt = 0.0031251881420515278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.66053886991358e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034107743116644114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9351.49212683808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.753285284490607, dt = 0.0034107743116644114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 286.02 us (97.0%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.549516567451064e-15,0)
sum a = (-3.552713678800501e-15,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037206077301542287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9908.112965248687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.756696058802271, dt = 0.0037206077301542287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 270.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.549516567451064e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00405610223781529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10767.50807194468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.760416666532425, dt = 0.00405610223781529 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.605027718682322e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.004418627360087713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12390.37317670537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.76447276877024, dt = 0.004418627360087713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.004809477981510707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12810.699593795742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.768891396130329, dt = 0.004809477981510707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.00522983914347477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14786.905501143594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.773700874111839, dt = 0.00522983914347477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 281.18 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.005680745807864783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15293.405483887065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.778930713255313, dt = 0.005680745807864783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.006163037572833233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17556.08953418534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.784611459063179, dt = 0.006163037572833233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.006677308514600686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18483.675437308553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.790774496636011, dt = 0.006677308514600686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 238.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.007223852563908839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19964.213586056016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.797451805150612, dt = 0.007223852563908839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.995204332975845e-15,-7.507883204027621e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0078026051091570426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21261.442189754638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.80467565771452, dt = 0.0078026051091570426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.507883204027621e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.008413081849108316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23613.369710803672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.812478262823678, dt = 0.008413081849108316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.83 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.507883204027621e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.009054316291314844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.291e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23451.40792158312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.820891344672786, dt = 0.009054316291314844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.995204332975845e-15,-7.507883204027621e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.009724797698227032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27373.358758266404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.829945660964102, dt = 0.009724797698227032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.507883204027621e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.04e-02 |
+-----------+-----------+
Info: cfl dt = 0.010422411705705866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28365.342610084947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.83967045866233, dt = 0.010422411705705866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 472.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-02 |
+-----------+-----------+
Info: cfl dt = 0.011144386256279904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31510.78724352064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.850092870368035, dt = 0.011144386256279904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 242.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-02 |
+-----------+-----------+
Info: cfl dt = 0.011887245873108354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33652.20659023666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.861237256624316, dt = 0.011887245873108354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.521760991835436e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-02 |
+-----------+-----------+
Info: cfl dt = 0.012646777614836157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36341.28944758706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.873124502497424, dt = 0.012646777614836157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-02 |
+-----------+-----------+
Info: cfl dt = 0.013418012255509463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38151.08580098742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.88577128011226, dt = 0.013418012255509463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.494005416219807e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-02 |
+-----------+-----------+
Info: cfl dt = 0.0141952242832239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41264.042992166644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.89918929236777, dt = 0.0141952242832239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.76 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.549516567451064e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-02 |
+-----------+-----------+
Info: cfl dt = 0.014971954161758146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41905.752023096946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.913384516650995, dt = 0.014971954161758146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.549516567451064e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-02 |
+-----------+-----------+
Info: cfl dt = 0.015741055910757588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44745.419723975865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.928356470812753, dt = 0.015741055910757588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.605027718682322e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-02 |
+-----------+-----------+
Info: cfl dt = 0.016494772401124836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47075.66398511938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.94409752672351, dt = 0.016494772401124836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.605027718682322e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-02 |
+-----------+-----------+
Info: cfl dt = 0.01722483981749447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51215.53016166416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.960592299124635, dt = 0.01722483981749447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 277.26 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.66053886991358e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.01792262151461443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50311.74206572967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.977817138942129, dt = 0.01792262151461443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.66053886991358e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-02 |
+-----------+-----------+
Info: cfl dt = 0.018579270021145403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53146.09946847832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.995739760456743, dt = 0.018579270021145403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 238.28 us (88.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-15,-7.716050021144838e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019185914284704255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55163.3754471136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.014319030477889, dt = 0.019185914284704255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-15,-7.716050021144838e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.01973386749836695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56557.93987202503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.033504944762594, dt = 0.01973386749836695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-15,-7.716050021144838e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.02021484912140427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57387.99827947377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.053238812260961, dt = 0.02021484912140427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.771561172376096e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.02062121314639778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61673.152763723774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.073453661382365, dt = 0.02062121314639778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.771561172376096e-15,0)
sum a = (-4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-02 |
+-----------+-----------+
Info: cfl dt = 0.020946173420967957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59475.071024298326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.094074874528763, dt = 0.020946173420967957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6343818499726694e-15,-7.827072323607354e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.02118401604944474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63992.35576429728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.115021047949732, dt = 0.02118401604944474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 264.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6343818499726694e-15,-7.827072323607354e-15,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.021330288699648255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62668.165891900535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.136205063999176, dt = 0.021330288699648255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.627442956068762e-15,-7.882583474838611e-15,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.02138195710462992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65066.303654514464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.157535352698824, dt = 0.02138195710462992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6343818499726694e-15,-7.827072323607354e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-02 |
+-----------+-----------+
Info: cfl dt = 0.02133752020664438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62567.65437206636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.178917309803454, dt = 0.02133752020664438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.620504062164855e-15,-7.827072323607354e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.021197077204864165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 3.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63655.24252522487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.200254830010099, dt = 0.021197077204864165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.882583474838611e-15,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.0209623421372163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63085.44406678703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.221451907214963, dt = 0.0209623421372163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.882583474838611e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020636604387623454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61447.3158023987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.24241424935218, dt = 0.020636604387623454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.9%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 298.00 us (97.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.93809462606987e-15,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020224636454079098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57434.82651714262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.263050853739804, dt = 0.020224636454079098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6066262743570405e-15,-7.93809462606987e-15,0)
sum a = (4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.019732553206474192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61692.03355602353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.283275490193883, dt = 0.019732553206474192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.993605777301127e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-02 |
+-----------+-----------+
Info: cfl dt = 0.019167629472189415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58624.89440112359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.303008043400357, dt = 0.019167629472189415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.662137425588298e-15,-7.993605777301127e-15,0)
sum a = (8.881784197001252e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.0185380849045552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58641.01273880726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.322175672872547, dt = 0.0185380849045552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-02 |
+-----------+-----------+
Info: cfl dt = 0.017852846555699735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56614.2511023026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.340713757777102, dt = 0.017852846555699735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 235.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-8.049116928532385e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.017121300297767986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54769.67985427677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.358566604332802, dt = 0.017121300297767986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 272.27 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.88418203051333e-15,-8.049116928532385e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.016353042194858062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49801.261801138724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.37568790463057, dt = 0.016353042194858062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (0.8%)
patch tree reduce : 490.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 388.50 us (97.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.88418203051333e-15,-8.049116928532385e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015557640173606058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.338e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44010.76209191576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.392040946825428, dt = 0.015557640173606058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.88418203051333e-15,-7.993605777301127e-15,0)
sum a = (-8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-02 |
+-----------+-----------+
Info: cfl dt = 0.014744414985585963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46582.20168304045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.407598586999034, dt = 0.014744414985585963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-02 |
+-----------+-----------+
Info: cfl dt = 0.013922247656152591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44776.30693267299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.42234300198462, dt = 0.013922247656152591 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (-8.881784197001252e-16,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-02 |
+-----------+-----------+
Info: cfl dt = 0.013099418552133122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42305.967782823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.436265249640773, dt = 0.013099418552133122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-8.021361352916756e-15,0)
sum a = (1.7763568394002505e-15,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-02 |
+-----------+-----------+
Info: cfl dt = 0.012283481057362034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40182.12854393751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.449364668192906, dt = 0.012283481057362034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.995204332975845e-15,-8.021361352916756e-15,0)
sum a = (0,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-02 |
+-----------+-----------+
Info: cfl dt = 0.011481170786636583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36531.04011137894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.46164814925027, dt = 0.011481170786636583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (0,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.07e-02 |
+-----------+-----------+
Info: cfl dt = 0.010698349430924856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34707.6957708858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.473129320036906, dt = 0.010698349430924856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-8.021361352916756e-15,0)
sum a = (-1.7763568394002505e-15,4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.009939980806218964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33042.28808649414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.48382766946783, dt = 0.009939980806218964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-8.021361352916756e-15,0)
sum a = (0,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.009210135530113817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30032.749475985474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.49376765027405, dt = 0.009210135530113817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.995204332975845e-15,-8.007483565108942e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.008512019989313687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28164.81039694821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.502977785804164, dt = 0.008512019989313687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.995204332975845e-15,-8.014422459012849e-15,0)
sum a = (1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.007848024869689206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25460.315529241565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.511489805793477, dt = 0.007848024869689206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-8.007483565108942e-15,0)
sum a = (-1.7763568394002505e-15,8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.007219788454984771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24062.316756204367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.519337830663167, dt = 0.007219788454984771 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-8.007483565108942e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0066282701015779695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21627.87877809986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.526557619118151, dt = 0.0066282701015779695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (0,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0060738296982515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20217.968732836496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.533185889219729, dt = 0.0060738296982515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.92 us (95.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (3.552713678800501e-15,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.005556309455199213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18720.339337243702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.53925971891798, dt = 0.005556309455199213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0050751149744456105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16486.926436840287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.54481602837318, dt = 0.0050751149744456105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 227.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-8.049116928532385e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.004629293182679044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15369.666087902233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.549891143347626, dt = 0.004629293182679044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-8.049116928532385e-15,0)
sum a = (0,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.004217605316347155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13903.045453452607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.554520436530305, dt = 0.004217605316347155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.003838593708253253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12712.437279884123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.558738041846652, dt = 0.003838593708253253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.329070518200751e-15,-7.993605777301127e-15,0)
sum a = (-3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.00349064161594382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11326.431506057244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.562576635554906, dt = 0.00349064161594382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-8.104628079763643e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031720257451687594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10675.461415944283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.56606727717085, dt = 0.0031720257451687594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028809614542664682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9610.573196460477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.569239302916019, dt = 0.0028809614542664682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-8.104628079763643e-15,0)
sum a = (7.105427357601002e-15,7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.002615640880595609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.358e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7639.972446464587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.572120264370286, dt = 0.002615640880595609 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002374264414946613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7755.159714465415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.574735905250881, dt = 0.002374264414946613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021550660732584464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7197.2851461019945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.577110169665827, dt = 0.0021550660732584464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (1.4210854715202004e-14,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001956333386950761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6286.2649271773425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.579265235739086, dt = 0.001956333386950761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (-7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017764224638154018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5632.996388815541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.581221569126036, dt = 0.0017764224638154018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.773159728050814e-15,-7.993605777301127e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001613768870157049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5264.903940770288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.58299799158985, dt = 0.001613768870157049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.1%)
LB compute : 266.42 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (0,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.00146689496019915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4651.323309879133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.584611760460009, dt = 0.00146689496019915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.771561172376096e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013344142379466207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4350.372818946335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.586078655420208, dt = 0.0013344142379466207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 263.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012150332857292405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3975.944541276878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.587413069658155, dt = 0.0012150332857292405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.001107551737327206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3735.760539206703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.588628102943884, dt = 0.001107551737327206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (1.4210854715202004e-14,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010108607155770199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3275.9322285716153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.589735654681212, dt = 0.0010108607155770199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-7.993605777301127e-15,0)
sum a = (-7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.24e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009239400973720634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3130.2081210118854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59074651539679, dt = 0.0009239400973720634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 270.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.46e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008458549148892032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2726.000762630968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.591670455494162, dt = 0.0008458549148892032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-7.993605777301127e-15,0)
sum a = (3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007757511519061952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2522.543001096082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.592516310409051, dt = 0.0007757511519061952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 288.14 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.43769498715119e-15,0)
sum a = (3.552713678800501e-15,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.13e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007128511489164175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2206.126102083681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.593292061560957, dt = 0.0007128511489164175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-7.993605777301127e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.56e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006564487906917847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2197.5898672068756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.594004912709874, dt = 0.0006564487906917847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-7.993605777301127e-15,0)
sum a = (3.552713678800501e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006059046149952401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1909.1076616578437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.594661361500565, dt = 0.0006059046149952401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.61e-04 |
+-----------+-----------+
Info: cfl dt = 0.000560640951102125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1706.6814185954465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59526726611556, dt = 0.000560640951102125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 279.14 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-7.993605777301127e-15,0)
sum a = (-1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005201371713242708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1615.5959095689464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.595827907066662, dt = 0.0005201371713242708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.217248937900877e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004839251174336252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1586.8107555764188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.596348044237986, dt = 0.0004839251174336252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 267.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.00045158474630895614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1408.0518230651448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59683196935542, dt = 0.00045158474630895614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-7.993605777301127e-15,0)
sum a = (-2.842170943040401e-14,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-04 |
+-----------+-----------+
Info: cfl dt = 0.00042274002482819533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1386.597449351219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.597283554101729, dt = 0.00042274002482819533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.38 us (96.7%)
LB move op cnt : 0
LB apply : 2.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.97e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039705509256246886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.7396866052395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.597706294126557, dt = 0.00039705509256246886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-7.993605777301127e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-04 |
+-----------+-----------+
Info: cfl dt = 0.00037423070178517644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1185.9835180331997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59810334921912, dt = 0.00037423070178517644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-9.769962616701378e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003540009373149228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1115.221976814169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.598477579920905, dt = 0.0003540009373149228 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 250.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-9.769962616701378e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003361302134280369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.868951537375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59883158085822, dt = 0.0003361302134280369 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 263.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.661338147750939e-15,-9.769962616701378e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.00032041054120803724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 995.521861027232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.59916771107165, dt = 0.00032041054120803724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105427357601002e-15,-8.881784197001252e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-04 |
+-----------+-----------+
Info: cfl dt = 0.00030665905698798305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.3872831376865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.599488121612858, dt = 0.00030665905698798305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 291.53 us (97.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002947158007661029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.9500446250138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.599794780669846, dt = 0.0002947158007661029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.549516567451064e-15,-8.881784197001252e-15,0)
sum a = (-2.2737367544323206e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-04 |
+-----------+-----------+
Info: cfl dt = 0.00028444173244801215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 889.3799208325403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.600089496470613, dt = 0.00028444173244801215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 266.34 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.881784197001252e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027571697333303327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.9238852622154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.600373938203061, dt = 0.00027571697333303327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.881784197001252e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-04 |
+-----------+-----------+
Info: cfl dt = 0.00026843926028713623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.7288691396637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.600649655176394, dt = 0.00026843926028713623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.65 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.881784197001252e-15,0)
sum a = (-2.2737367544323206e-13,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002625226004235144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.5695630300456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.60091809443668, dt = 0.0002625226004235144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.881784197001252e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002578961147564695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.7969671681612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.601180617037103, dt = 0.0002578961147564695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.24 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-8.881784197001252e-15,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002545030601345619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.8864138618926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.60143851315186, dt = 0.0002545030601345619 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002523000197385613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.2952826721706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.601693016211994, dt = 0.0002523000197385613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.78 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.049116928532385e-15,-8.881784197001252e-15,0)
sum a = (0,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025125625350387734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.102709504636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.601945316231733, dt = 0.00025125625350387734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.03523914072457e-15,-7.993605777301127e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002513532009606499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.8100178976731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.602196572485237, dt = 0.0002513532009606499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 284.16 us (97.0%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-7.993605777301127e-15,0)
sum a = (-2.2737367544323206e-13,2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025258413014989876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 735.6385993227423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.602447925686198, dt = 0.00025258413014989876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 269.04 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.104628079763643e-15,-7.993605777301127e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025495392744934094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 723.3803693815571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.602700509816348, dt = 0.00025495392744934094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-8.881784197001252e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-04 |
+-----------+-----------+
Info: cfl dt = 0.00025847902431038215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 733.6580813833211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.602955463743797, dt = 0.00025847902431038215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-7.993605777301127e-15,0)
sum a = (-2.2737367544323206e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002631874580542389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.6928164021773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.603213942768107, dt = 0.0002631874580542389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.26 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.215650382226158e-15,-7.105427357601002e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002691190649880104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.0357710113371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.603477130226162, dt = 0.0002691190649880104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-7.105427357601002e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.00027632580516958856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.8060036672705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.60374624929115, dt = 0.00027632580516958856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-6.217248937900877e-15,0)
sum a = (-1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.85e-04 |
+-----------+-----------+
Info: cfl dt = 0.0002848722191624198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.784744532247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.60402257509632, dt = 0.0002848722191624198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-5.329070518200751e-15,0)
sum a = (1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-04 |
+-----------+-----------+
Info: cfl dt = 0.00029483601806517537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 872.103050400328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.604307447315483, dt = 0.00029483601806517537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.36 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-6.217248937900877e-15,0)
sum a = (0,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.06e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003063088089635111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 852.3201825032894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.604602283333548, dt = 0.0003063088089635111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-7.105427357601002e-15,0)
sum a = (-1.1368683772161603e-13,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003193969587146974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 923.7522626694288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.604908592142513, dt = 0.0003193969587146974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-7.105427357601002e-15,0)
sum a = (-1.1368683772161603e-13,1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.34e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003342225996208702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.185478912906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.605227989101227, dt = 0.0003342225996208702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-6.217248937900877e-15,0)
sum a = (1.1368683772161603e-13,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003509247810483173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.4019217982429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.605562211700848, dt = 0.0003509247810483173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-5.329070518200751e-15,0)
sum a = (5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-04 |
+-----------+-----------+
Info: cfl dt = 0.0003696607713784002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.600145446726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.605913136481897, dt = 0.0003696607713784002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-6.217248937900877e-15,0)
sum a = (-5.684341886080802e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.91e-04 |
+-----------+-----------+
Info: cfl dt = 0.00039060751479366636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1106.8810848757446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.606282797253275, dt = 0.00039060751479366636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.0004139632472659723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1144.4082448750178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.606673404768069, dt = 0.0004139632472659723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.993605777301127e-15,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-04 |
+-----------+-----------+
Info: cfl dt = 0.00043994927566865584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1256.0114977374783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.607087368015335, dt = 0.00043994927566865584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.65 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43769498715119e-15,-7.105427357601002e-15,0)
sum a = (0,-1.1368683772161603e-13,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-04 |
+-----------+-----------+
Info: cfl dt = 0.00046881192311845594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.884766113102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.607527317291003, dt = 0.00046881192311845594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.881784197001252e-15,-7.105427357601002e-15,0)
sum a = (1.4210854715202004e-14,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.01e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005008246423900553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1408.7143648404974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.607996129214122, dt = 0.0005008246423900553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 270.96 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.105427357601002e-15,0)
sum a = (-1.4210854715202004e-14,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005362902974491952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1444.3126599479453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.608496953856513, dt = 0.0005362902974491952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-7.105427357601002e-15,0)
sum a = (0,5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.76e-04 |
+-----------+-----------+
Info: cfl dt = 0.0005755436107177796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1658.3505447683228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.609033244153961, dt = 0.0005755436107177796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.69 us (96.9%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.217248937900877e-15,0)
sum a = (-3.552713678800501e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.19e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006189537704998096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1669.8315132307932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.60960878776468, dt = 0.0006189537704998096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.661338147750939e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.67e-04 |
+-----------+-----------+
Info: cfl dt = 0.0006669271889283042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1894.5647283984993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.61022774153518, dt = 0.0006669271889283042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.20e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007199103956924014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1941.9077777334776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.610894668724109, dt = 0.0007199103956924014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.773159728050814e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.78e-04 |
+-----------+-----------+
Info: cfl dt = 0.0007783930465068243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192.9563025240286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.611614579119802, dt = 0.0007783930465068243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.49 us (96.9%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.773159728050814e-15,0)
sum a = (0,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.43e-04 |
+-----------+-----------+
Info: cfl dt = 0.0008429110176144881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2251.7951645762155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.612392972166308, dt = 0.0008429110176144881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.329070518200751e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.14e-04 |
+-----------+-----------+
Info: cfl dt = 0.0009140495483768788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2553.5213614598356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.613235883183922, dt = 0.0009140495483768788 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 630.00 ns (0.2%)
gen split merge : 21.36 us (8.0%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 236.33 us (88.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-5.329070518200751e-15,0)
sum a = (-7.105427357601002e-15,-5.684341886080802e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.92e-04 |
+-----------+-----------+
Info: cfl dt = 0.000992446383007511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2726.2568396362567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.6141499327323, dt = 0.000992446383007511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,-2.842170943040401e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0010787948495411277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2985.7315427673284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.615142379115307, dt = 0.0010787948495411277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.329070518200751e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011738467990121178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3213.2518132776286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.616221173964847, dt = 0.0011738467990121178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.773159728050814e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001278415310365992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632.217078258454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.61739502076386, dt = 0.001278415310365992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.773159728050814e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013933770467092828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3760.730196202062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.618673436074227, dt = 0.0013933770467092828 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 224.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.995204332975845e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015196741260342776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4267.261508019084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.620066813120935, dt = 0.0015196741260342776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.00165831534453739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4523.512802602403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.62158648724697, dt = 0.00165831534453739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-6.217248937900877e-15,0)
sum a = (7.105427357601002e-15,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018103765632025263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4626.128253113645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.623244802591508, dt = 0.0018103765632025263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.5%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 513.93 us (98.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1546319456101628e-14,-6.217248937900877e-15,0)
sum a = (7.105427357601002e-15,1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001977000038719441 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.463e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4455.662612917979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.62505517915471, dt = 0.001977000038719441 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 269.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.995204332975845e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021593924485327314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5669.738563167562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.62703217919343, dt = 0.0021593924485327314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-5.995204332975845e-15,0)
sum a = (0,-1.4210854715202004e-14,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.002358821327610696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6500.033708944519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.629191571641963, dt = 0.002358821327610696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.30 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-5.995204332975845e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025766096024474115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6967.89832041804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.631550392969574, dt = 0.0025766096024474115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-14,-6.106226635438361e-15,0)
sum a = (7.105427357601002e-15,-7.105427357601002e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028141278773161985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7921.604244771276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.634127002572022, dt = 0.0028141278773161985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 231.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.106226635438361e-15,0)
sum a = (7.105427357601002e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030727841007842853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8304.8688453182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.636941130449339, dt = 0.0030727841007842853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.106226635438361e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.003354010219403056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9426.649841688022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.640013914550122, dt = 0.003354010219403056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (3.552713678800501e-15,3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.003659245413306428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10236.086783897017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.643367924769526, dt = 0.003659245413306428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.003989915508791539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11203.60083270665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.647027170182833, dt = 0.003989915508791539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 222.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.004347408180041848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11897.016101275487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.651017085691624, dt = 0.004347408180041848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (0,-3.552713678800501e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.004733043590769607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13440.534788585268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.655364493871666, dt = 0.004733043590769607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.00514804019194391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14112.258063711623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.660097537462436, dt = 0.00514804019194391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.217248937900877e-15,0)
sum a = (3.552713678800501e-15,-1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.005593475489429542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15765.366187512613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.66524557765438, dt = 0.005593475489429542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.189493362285248e-15,0)
sum a = (0,1.7763568394002505e-15,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.006070241730740493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16599.80673780898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.67083905314381, dt = 0.006070241730740493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.189493362285248e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0065789966381791356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.333e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16397.195382875452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.67690929487455, dt = 0.0065789966381791356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.217248937900877e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.007120109540302199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19418.38279876664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.68348829151273, dt = 0.007120109540302199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 223.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.217248937900877e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 7.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.007693603527067004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22185.44219175495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.690608401053032, dt = 0.007693603527067004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.68 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.992007221626409e-15,-6.221802587025316e-15,0)
sum a = (1.7763568394002505e-15,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.008299094575670038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22500.284491093716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.698302004580098, dt = 0.008299094575670038 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.992007221626409e-15,-6.231126725708691e-15,0)
sum a = (0,-8.881784197001252e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 8.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.008935728959900628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25098.595377433274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.706601099155769, dt = 0.008935728959900628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.992007221626409e-15,-6.231126725708691e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 9.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.009602120657088131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26398.732491231305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.71553682811567, dt = 0.009602120657088131 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.769962616701378e-15,-6.2450045135165055e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.03e-02 |
+-----------+-----------+
Info: cfl dt = 0.010296290889141526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28989.01693547198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.72513894877276, dt = 0.010296290889141526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 277.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.2727600891321345e-15,0)
sum a = (-1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.011015612357124076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30018.41371570346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.735435239661902, dt = 0.011015612357124076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.021405182655144e-14,-6.2727600891321345e-15,0)
sum a = (8.881784197001252e-16,-4.440892098500626e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-02 |
+-----------+-----------+
Info: cfl dt = 0.011756761124838094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33827.37557324521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.746450852019025, dt = 0.011756761124838094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0436096431476471e-14,-6.2727600891321345e-15,0)
sum a = (1.7763568394002505e-15,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-02 |
+-----------+-----------+
Info: cfl dt = 0.012515679441899852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34361.925864291734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.758207613143863, dt = 0.012515679441899852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 230.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.300515664747763e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-02 |
+-----------+-----------+
Info: cfl dt = 0.013287553030839241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38037.56441682486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.770723292585764, dt = 0.013287553030839241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0658141036401503e-14,-6.2727600891321345e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-02 |
+-----------+-----------+
Info: cfl dt = 0.014066806451962762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40910.09386237404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.784010845616603, dt = 0.014066806451962762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-6.328271240363392e-15,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-02 |
+-----------+-----------+
Info: cfl dt = 0.014847120059131249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42132.445676862946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.798077652068566, dt = 0.014847120059131249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 230.96 us (89.1%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-6.328271240363392e-15,0)
sum a = (8.881784197001252e-16,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-02 |
+-----------+-----------+
Info: cfl dt = 0.015621471727316465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44221.49138967509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.812924772127698, dt = 0.015621471727316465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-6.328271240363392e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-02 |
+-----------+-----------+
Info: cfl dt = 0.01638220593505561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47517.302924126896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.828546243855014, dt = 0.01638220593505561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-6.2727600891321345e-15,0)
sum a = (8.881784197001252e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-02 |
+-----------+-----------+
Info: cfl dt = 0.01712113190194724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49657.25996177373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.84492844979007, dt = 0.01712113190194724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.6%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 428.23 us (97.1%)
LB move op cnt : 0
LB apply : 1.45 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0769163338864018e-14,-6.2727600891321345e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-02 |
+-----------+-----------+
Info: cfl dt = 0.0178296513133734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.384e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44530.39251735565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.862049581692016, dt = 0.0178296513133734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 267.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0880185641326534e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-02 |
+-----------+-----------+
Info: cfl dt = 0.018498914737411592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52875.20499810469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.87987923300539, dt = 0.018498914737411592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.099120794378905e-14,-6.217248937900877e-15,0)
sum a = (8.881784197001252e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-02 |
+-----------+-----------+
Info: cfl dt = 0.01912000420755789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54985.69797100922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.898378147742802, dt = 0.01912000420755789 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.07 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.099120794378905e-14,-6.2727600891321345e-15,0)
sum a = (4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-02 |
+-----------+-----------+
Info: cfl dt = 0.01968413769540069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56925.481447623475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.91749815195036, dt = 0.01968413769540069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 225.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.099120794378905e-14,-6.2727600891321345e-15,0)
sum a = (4.440892098500626e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-02 |
+-----------+-----------+
Info: cfl dt = 0.020182889444544317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59505.29799166698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.937182289645762, dt = 0.020182889444544317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0935696792557792e-14,-6.2727600891321345e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-02 |
+-----------+-----------+
Info: cfl dt = 0.020608418518317736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58233.77857882694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.957365179090306, dt = 0.020608418518317736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 247.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.099120794378905e-14,-6.2727600891321345e-15,0)
sum a = (4.440892098500626e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-02 |
+-----------+-----------+
Info: cfl dt = 0.020953696578781062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59817.96407384843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.977973597608624, dt = 0.020953696578781062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1018963519404679e-14,-6.217248937900877e-15,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-02 |
+-----------+-----------+
Info: cfl dt = 0.02121272501095385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60470.44123418407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.998927294187405, dt = 0.02121272501095385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 340.52 us (97.4%)
LB move op cnt : 0
LB apply : 1.94 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1018963519404679e-14,-6.217248937900877e-15,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-02 |
+-----------+-----------+
Info: cfl dt = 0.021380731163022068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58743.4278593387 (tsim/hr) [sph::Model][rank=0]
(1672, 2, 3)
1 star multiple planets (resonance 3:2)
254 m1 = 1.0
255 m2 = 1e-2
256 a = 1.0
257 _x1, _x2, _v1, _v2 = shamrock.phys.get_binary_rotated(
258 m1=1.0, m2=m2, a=a, e=0.0, nu=0.0, G=G, roll=0.0, pitch=0.0, yaw=0.0
259 )
260 a = a * (3.0 / 2.0) ** (2.0 / 3.0)
261 _x1, _x3, _v1, _v3 = shamrock.phys.get_binary_rotated(
262 m1=1.0, m2=m2, a=a, e=0.0, nu=0.0, G=G, roll=0.0, pitch=0.0, yaw=np.pi
263 )
264
265 _v1, _v2, _v3 = correct_sink_velocities_zero_momentum([_v1, _v2, _v3], [m1, m2, m2])
266
267 ctx, model = build_sink_sph_model(
268 positions=[_x1, _x2, _x3],
269 velocities=[_v1, _v2, _v3],
270 masses=[m1, m2, m2],
271 accretion_radii=[1, 1, 1],
272 box_extent=3,
273 eta_sink=2.0,
274 )
275 snapshots = run_sim(model, 10, use_dt=None)
276 plot_orbit_trajectory(snapshots, "1 star multiple planets (resonance 3:2)")

=== INITIAL CONDITIONS ===
Sink 1: pos=(0.012973967298063844, -1.5888527523816322e-18, 0.0), vel=(6.688540478325187e-18, -0.006677845849284526, 0.0), mass=1.0
Sink 2: pos=(0.9900990099009901, 0.0, 0.0), vel=(7.552666448577395e-34, 6.190686282268493, 0.0), mass=0.01
Sink 3: pos=(-1.2973967298063844, 1.5888527523816321e-16, 0.0), vel=(-6.6885404783251865e-16, -5.52290169734004, 0.0), mass=0.01
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.82 us (1.7%)
patch tree reduce : 781.00 ns (0.1%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1.24 ms (96.8%)
LB move op cnt : 0
LB apply : 12.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,6.938893903907228e-18,0)
sum a = (0,-6.162975822039155e-33,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-05 |
+-----------+-----------+
Info: cfl dt = 2.0057654314976273e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 3.624e-03 | 1.1% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0, dt = 2.0057654314976273e-05 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (0.3%)
patch tree reduce : 460.00 ns (0.0%)
gen split merge : 481.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.0%)
LB compute : 1.14 ms (99.1%)
LB move op cnt : 0
LB apply : 2.03 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.235164736271502e-22,6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,-6.776263578034403e-21,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 6.82e-04 |
+-----------+-----------+
Info: cfl dt = 0.00068196024619895 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.483e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.08429718379658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0057654314976273e-05, dt = 0.00068196024619895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (0.9%)
patch tree reduce : 491.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 334.77 us (97.2%)
LB move op cnt : 0
LB apply : 1.78 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3552527156068805e-20,6.938893903907228e-18,0)
sum a = (-1.3877787807814457e-16,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011232276122460402 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.006e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.6714308082026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0007020179005139263, dt = 0.0011232276122460402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (0.9%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 329.70 us (97.3%)
LB move op cnt : 0
LB apply : 1.69 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0842021724855044e-19,1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,-6.505213034913027e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014173987911426944 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.303e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3104.020102867378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0018252455127599665, dt = 0.0014173987911426944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (0.9%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 312.74 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-19,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-1.3010426069826053e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016134953148008 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3912.6230770869383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.003242644303902661, dt = 0.0016134953148008 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 277.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017441965815736427 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4609.71588437098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004856139618703461, dt = 0.0017441965815736427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,6.938893903907228e-18,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018312888753979262 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5124.839984056147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006600336200277103, dt = 0.0018312888753979262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.3877787807814457e-17,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018892969451961936 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5330.35358792292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008431625075675029, dt = 0.0018892969451961936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,6.938893903907228e-18,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001927904544767371 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5793.784954495642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010320922020871223, dt = 0.001927904544767371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 261.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-19,1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019535679644326824 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5647.022742956563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012248826565638594, dt = 0.0019535679644326824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001970591705984699 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5793.742711905203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014202394530071277, dt = 0.001970591705984699 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019818456323657534 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5757.367324127111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.016172986236055977, dt = 0.0019818456323657534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,2.0816681711721685e-17,0)
sum a = (-1.1102230246251565e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019892431051369047 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5924.996907816828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01815483186842173, dt = 0.0019892431051369047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-18,1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001994059772554522 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5772.717303696345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.020144074973558634, dt = 0.001994059772554522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-19,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019971461153197377 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5827.545400462298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.022138134746113158, dt = 0.0019971461153197377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019990691565846576 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5702.800598341806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.024135280861432896, dt = 0.0019990691565846576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.15 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.0816681711721685e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020002069429186113 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5675.814475101358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026134350018017553, dt = 0.0020002069429186113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,2.0816681711721685e-17,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002000811535911793 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5945.658173655533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028134556960936166, dt = 0.002000811535911793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,1.3877787807814457e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002001051008845556 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6039.886940002511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030135368496847958, dt = 0.002001051008845556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-19,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.00200103744556433 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5964.443786363171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.032136419505693514, dt = 0.00200103744556433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.54 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,2.0816681711721685e-17,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020008456068288535 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5902.567026207402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03413745695125785, dt = 0.0020008456068288535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.0816681711721685e-17,0)
sum a = (8.326672684688674e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002000525374647337 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5798.240643287527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0361383025580867, dt = 0.002000525374647337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 299.02 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,2.0816681711721685e-17,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002000110048426531 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5720.544825164433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.038138827932734036, dt = 0.002000110048426531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 302.03 us (97.1%)
LB move op cnt : 0
LB apply : 1.58 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-18,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019996218756016225 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.410e-03 | 0.5% | 1.7% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5105.342357712728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04013893798116057, dt = 0.0019996218756016225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 285.61 us (97.0%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-18,2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019990757385684207 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.396e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5157.475133522075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.042138559856762195, dt = 0.0019990757385684207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 291.94 us (97.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019984816124912113 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.329e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5416.521902534535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04413763559533061, dt = 0.0019984816124912113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,1.3877787807814457e-17,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019978462037116866 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5726.135157459707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.046136117207821827, dt = 0.0019978462037116866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 283.65 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0816681711721685e-17,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019971740419116044 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.326e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5425.50210454451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04813396341153351, dt = 0.0019971740419116044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-18,2.7755575615628914e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019964682081296857 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5382.307688936864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.050131137453445114, dt = 0.0019964682081296857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 281.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,2.7755575615628914e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019957308200304045 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.441e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4986.1739585032965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0521276056615748, dt = 0.0019957308200304045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 287.75 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.00199496335535342 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.346e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5336.2777473656715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05412333648160521, dt = 0.00199496335535342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.4%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 775.31 us (98.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-18,1.3877787807814457e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001994166867493329 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.185e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3287.50550068654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05611829983695863, dt = 0.001994166867493329 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.3%)
patch tree reduce : 420.00 ns (0.0%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.0%)
LB compute : 950.23 us (99.1%)
LB move op cnt : 0
LB apply : 1.68 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-18,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001993342129173733 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.204e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3256.665854492957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05811246670445196, dt = 0.001993342129173733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.3%)
patch tree reduce : 410.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 912.38 us (99.0%)
LB move op cnt : 0
LB apply : 1.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001992489728189689 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.219e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3233.233158076937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06010580883362569, dt = 0.001992489728189689 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.3%)
patch tree reduce : 430.00 ns (0.0%)
gen split merge : 400.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 910.61 us (99.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019916101311996627 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.195e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3267.6339581864972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06209829856181538, dt = 0.0019916101311996627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.7%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 409.60 us (98.0%)
LB move op cnt : 0
LB apply : 1.42 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-18,2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001990703726219904 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.666e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4303.418507216855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06408990869301505, dt = 0.001990703726219904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (0.3%)
patch tree reduce : 431.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 885.18 us (99.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-18,2.0816681711721685e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001989770850922281 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.203e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.5532478366817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06608061241923495, dt = 0.001989770850922281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.3%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.0%)
LB compute : 868.92 us (99.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019888118114689446 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.102e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3408.3723449058193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06807038327015723, dt = 0.0019888118114689446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.3%)
patch tree reduce : 441.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 892.94 us (99.0%)
LB move op cnt : 0
LB apply : 1.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0816681711721685e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001987826895038931 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.936e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3697.9879383528755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07005919508162617, dt = 0.001987826895038931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (0.5%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 597.85 us (98.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001986816378149751 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.985e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3604.2480433688465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0720470219766651, dt = 0.001986816378149751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.4%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 642.03 us (98.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,3.469446951953614e-17,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019857805321757535 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.860e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3845.180238025764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07403383835481485, dt = 0.0019857805321757535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.3%)
patch tree reduce : 420.00 ns (0.0%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.0%)
LB compute : 929.78 us (99.1%)
LB move op cnt : 0
LB apply : 1.54 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001984719626997629 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.256e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3169.154127582886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0760196188869906, dt = 0.001984719626997629 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 491.50 us (98.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019836339334058386 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.755e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4070.7651209275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07800433851398823, dt = 0.0019836339334058386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (0.3%)
patch tree reduce : 431.00 ns (0.0%)
gen split merge : 390.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 868.53 us (99.0%)
LB move op cnt : 0
LB apply : 1.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001982523724673084 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.981e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3604.7574377294372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07998797244739407, dt = 0.001982523724673084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.4%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 590.04 us (98.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.0816681711721685e-17,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019813892775725137 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.873e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3810.2130900757884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08197049617206716, dt = 0.0019813892775725137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.7%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 393.31 us (97.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019802308730260962 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.649e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4325.261937678796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08395188544963966, dt = 0.0019802308730260962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.3%)
patch tree reduce : 420.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 951.39 us (97.1%)
LB move op cnt : 0
LB apply : 1.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,6.938893903907228e-18,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001979048796506112 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.250e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3168.684857023075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08593211632266576, dt = 0.001979048796506112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.6%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 435.93 us (93.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,6.938893903907228e-18,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019778433382717127 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.674e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4256.947104608832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08791116511917187, dt = 0.0019778433382717127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 305.16 us (97.2%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019766147934951904 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.362e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5229.534445682704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08988900845744358, dt = 0.0019766147934951904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 268.08 us (96.9%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,6.938893903907228e-18,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019753634623144068 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.567e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4542.390215719843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09186562325093876, dt = 0.0019753634623144068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.4%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 770.74 us (98.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,0,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001974089649835661 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.067e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3440.840273906229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09384098671325317, dt = 0.001974089649835661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.3%)
patch tree reduce : 421.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.0%)
LB compute : 867.13 us (99.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001972793666103243 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.159e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3291.249547028395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09581507636308882, dt = 0.001972793666103243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.3%)
patch tree reduce : 430.00 ns (0.0%)
gen split merge : 400.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.0%)
LB compute : 922.91 us (99.0%)
LB move op cnt : 0
LB apply : 1.69 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,-1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019714758260464724 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.240e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3171.130353738338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09778787002919206, dt = 0.0019714758260464724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.3%)
patch tree reduce : 451.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 939.87 us (99.1%)
LB move op cnt : 0
LB apply : 1.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019701364494114806 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.242e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3166.123823470083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09975934585523853, dt = 0.0019701364494114806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.3%)
patch tree reduce : 421.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 915.74 us (99.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001968775860682566 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.267e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3128.4173200871455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10172948230465001, dt = 0.001968775860682566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.3%)
patch tree reduce : 441.00 ns (0.0%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.0%)
LB compute : 874.03 us (99.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019673943889963815 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.165e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3273.3839387411786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10369825816533257, dt = 0.0019673943889963815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (0.4%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 791.94 us (98.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,-3.469446951953614e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001965992368051125 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.150e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3294.3796718871827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10566565255432896, dt = 0.001965992368051125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.3%)
patch tree reduce : 441.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 925.18 us (99.1%)
LB move op cnt : 0
LB apply : 1.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019645701360122255 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.198e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3219.535511412596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10763164492238009, dt = 0.0019645701360122255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.3%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 819.96 us (99.0%)
LB move op cnt : 0
LB apply : 1.48 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.163336342344337e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00196312803541552 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.168e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3262.195314051086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10959621505839232, dt = 0.00196312803541552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019616664130686105 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.492e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4738.024428381423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11155934309380784, dt = 0.0019616664130686105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.3%)
patch tree reduce : 411.00 ns (0.0%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 985.45 us (99.1%)
LB move op cnt : 0
LB apply : 1.82 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001960185619950888 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.250e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138.3496363020254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11352100950687645, dt = 0.001960185619950888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (0.8%)
patch tree reduce : 440.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 362.00 us (97.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-3.469446951953614e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00195868601111256 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.709e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4129.362883622913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11548119512682734, dt = 0.00195868601111256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.3%)
patch tree reduce : 441.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.0%)
LB compute : 882.47 us (99.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001957167945572925 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.188e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.1104500504252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11743988113793989, dt = 0.001957167945572925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.3%)
patch tree reduce : 451.00 ns (0.0%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 901.37 us (99.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,-4.163336342344337e-17,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019556317862180882 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.169e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3247.8769534302237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11939704908351281, dt = 0.0019556317862180882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.3%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.0%)
LB compute : 847.24 us (99.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001954077899698254 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.166e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3249.950920445834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1213526808697309, dt = 0.001954077899698254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (0.3%)
patch tree reduce : 420.00 ns (0.0%)
gen split merge : 400.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.0%)
LB compute : 903.16 us (99.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019525066563247091 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.161e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3255.559085603904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12330675876942916, dt = 0.0019525066563247091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (0.4%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 639.37 us (98.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,-3.469446951953614e-17,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019509184299665997 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.941e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3621.412455663198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12525926542575386, dt = 0.0019509184299665997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (0.3%)
patch tree reduce : 420.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 880.21 us (99.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,-4.163336342344337e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019493135979475862 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.200e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3192.304598790658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12721018385572044, dt = 0.0019493135979475862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 435.52 us (98.0%)
LB move op cnt : 0
LB apply : 1.57 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,-4.163336342344337e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019476925409424447 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.670e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4201.313134751173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12915949745366803, dt = 0.0019476925409424447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.3%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 805.38 us (98.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,-4.85722573273506e-17,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019460556428736848 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.083e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3366.8689568937402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1311071899946105, dt = 0.0019460556428736848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (0.4%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.0%)
LB compute : 798.01 us (98.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-4.85722573273506e-17,0)
sum a = (2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019444032908082552 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.107e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3325.359227990234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13305324563748416, dt = 0.0019444032908082552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.3%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.0%)
LB compute : 838.74 us (99.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,-5.551115123125783e-17,0)
sum a = (5.551115123125783e-17,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019427358748543982 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.146e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3261.5642825570267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1349976489282924, dt = 0.0019427358748543982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.3%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 831.99 us (98.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019410537880587065 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.853e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3774.362893594472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1369403848031468, dt = 0.0019410537880587065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-17,-4.85722573273506e-17,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.001939357426303441 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5538.4482035268165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1388814385912055, dt = 0.001939357426303441 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.3%)
patch tree reduce : 431.00 ns (0.0%)
gen split merge : 400.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.0%)
LB compute : 941.55 us (99.1%)
LB move op cnt : 0
LB apply : 1.58 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019376471882041782 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.242e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3113.539928500598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14082079601750894, dt = 0.0019376471882041782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (0.3%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 400.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 808.65 us (98.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019359234750078232 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.153e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.3090195616373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14275844320571313, dt = 0.0019359234750078232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.5%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 524.72 us (98.3%)
LB move op cnt : 0
LB apply : 1.69 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-3.469446951953614e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019341866904910622 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.527e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4564.239554788405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14469436668072094, dt = 0.0019341866904910622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-3.469446951953614e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019324372408592936 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5658.549974619129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.146628553371212, dt = 0.0019324372408592936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.469446951953614e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019306755346460895 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5656.796887882871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1485609906120713, dt = 0.0019306755346460895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019289019826132555 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5627.934785379229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15049166614671738, dt = 0.0019289019826132555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.469446951953614e-17,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019271169976515154 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5572.221842100899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15242056812933064, dt = 0.0019271169976515154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019253209946818895 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.367e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5075.092642356481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15434768512698216, dt = 0.0019253209946818895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019235143905577989 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.365e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5079.630326753244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15627300612166406, dt = 0.0019235143905577989 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019216976039679572 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5437.283032474639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15819652051222186, dt = 0.0019216976039679572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019198710553400874 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5395.938661601506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16011821811618981, dt = 0.0019198710553400874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019180351667455037 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5461.398075284419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1620380891715299, dt = 0.0019180351667455037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019161903618046183 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5312.266581128761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1639561243382754, dt = 0.0019161903618046183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001914337065593398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5580.635802526331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16587231470008001, dt = 0.001914337065593398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019124757045508242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5566.533528805304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16778665176567342, dt = 0.0019124757045508242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019106067063873943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5820.460837888991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16969912747022425, dt = 0.0019106067063873943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001908730499994696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.281e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5371.176920796096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17160973417661166, dt = 0.001908730499994696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (0.4%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.0%)
LB compute : 778.80 us (98.8%)
LB move op cnt : 0
LB apply : 1.82 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001906847515356103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.810e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3797.110596696983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17351846467660637, dt = 0.001906847515356103 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019049581834586235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5293.841291810725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17542531219196247, dt = 0.0019049581834586235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001903062936205944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5686.989345949564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1773302703754211, dt = 0.001903062936205944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 277.40 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019011622063326821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5356.423672893833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17923333331162705, dt = 0.0019011622063326821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018992564273199147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5336.108863984849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18113449551795974, dt = 0.0018992564273199147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 276.76 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001897346033311984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5369.428715977707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18303375194527965, dt = 0.001897346033311984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018954314590346327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.390e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4914.428135979859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18493109797859164, dt = 0.0018954314590346327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018935131397144734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5203.536297137011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1868265294376263, dt = 0.0018935131397144734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 269.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018915915109998563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.325e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5145.901676239157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18872004257734076, dt = 0.0018915915109998563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (0,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018896670088831286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5412.399449041532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19061163408834061, dt = 0.0018896670088831286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018877400696243349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5384.8982807711345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19250130109722374, dt = 0.0018877400696243349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018858111296763578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.353e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5021.48304487623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19438904116684808, dt = 0.0018858111296763578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018838806256115607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5080.701762389558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19627485229652444, dt = 0.0018838806256115607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018819489940499114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5558.080849206375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.198158732922136, dt = 0.0018819489940499114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001880016671588646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5176.130401941546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20004068191618593, dt = 0.001880016671588646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.28 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018780840947334595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.337e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5061.639587024671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2019206985877746, dt = 0.0018780840947334595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001876151699831273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5224.648545945804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20379878268250806, dt = 0.001876151699831273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.001874219923004564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.322e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5110.238580628712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20567493438233933, dt = 0.001874219923004564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018722892000873094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5408.1283316445715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2075491543053439, dt = 0.0018722892000873094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.8%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 302.68 us (97.2%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.938893903907228e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018703599665625208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.373e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4909.938715604751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2094214435054312, dt = 0.0018703599665625208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018684326575014196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.303e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5169.104255495204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21129180347199372, dt = 0.0018684326575014196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.001866507707504237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5397.542079897279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21316023612949514, dt = 0.001866507707504237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001864585550642667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5370.863101678019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21502674383699938, dt = 0.001864585550642667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018626666204039843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5438.280737542282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21689132938764205, dt = 0.0018626666204039843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 276.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.3877787807814457e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018607513496368157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.337e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5015.377494715322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21875399600804604, dt = 0.0018607513496368157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018588401704986053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5430.626433368764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22061474735768286, dt = 0.0018588401704986053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018569335144047508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5545.116667435904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22247358752818147, dt = 0.0018569335144047508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018550318119794351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5378.202625364431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22433052104258622, dt = 0.0018550318119794351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 233.11 us (94.0%)
LB move op cnt : 0
LB apply : 6.24 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018531354930081533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5197.0531261753795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22618555285456565, dt = 0.0018531354930081533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 532.00 ns (0.2%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 271.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018512449863919377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5317.82648486135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2280386883475738, dt = 0.0018512449863919377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001849360720103285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5377.505152809652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22988993333396573, dt = 0.001849360720103285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.91 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018474831211437875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5262.320610112069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.231739294054069, dt = 0.0018474831211437875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (71.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018456126155034739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5430.53508619666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2335867771752128, dt = 0.0018456126155034739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.42861286636753e-17,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018437496281218484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5494.071081533252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2354323897907163, dt = 0.0018437496281218484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018418945828506436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5437.982945202861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23727613941883813, dt = 0.0018418945828506436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.3877787807814457e-17,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018400479024182684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5514.663612433084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23911803400168877, dt = 0.0018400479024182684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.0408340855860843e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018382100083959632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5432.281087564357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24095808190410703, dt = 0.0018382100083959632 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018363813211656518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5186.765907561106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.242796291912503, dt = 0.0018363813211656518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.84 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018345622598894846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5238.534374068511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24463267323366863, dt = 0.0018345622598894846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018327532424810662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.315e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5022.811206144216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24646723549355812, dt = 0.0018327532424810662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018309546855783815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5184.926007279927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24829998873603917, dt = 0.0018309546855783815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001829167004518376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5427.775976483809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25013094342161757, dt = 0.001829167004518376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.0408340855860843e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018273906133132213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5348.21999435221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2519601104261359, dt = 0.0018273906133132213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018256259246282377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5501.863927914993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25378750103944914, dt = 0.0018256259246282377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-3.469446951953614e-18,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001823873349761466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5537.709512883741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2556131269640774, dt = 0.001823873349761466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001822133298624882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5543.903308589558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25743700031383887, dt = 0.001822133298624882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018204061797272473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5152.731650588135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2592591336124638, dt = 0.0018204061797272473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.734723475976807e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001818692400158582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5336.282817712058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.261079539792191, dt = 0.001818692400158582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018169923655762458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5147.416650539992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2628982321923496, dt = 0.0018169923655762458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 285.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018153064801926175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.331e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4914.60157620323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26471522455792584, dt = 0.0018153064801926175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018136351467643672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5104.624262394178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26653053103811847, dt = 0.0018136351467643672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018119787665832991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5166.103191208737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2683441661848828, dt = 0.0018119787665832991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.0408340855860843e-17,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018103377394687536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5375.294024332057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2701561449514661, dt = 0.0018103377394687536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.0408340855860843e-17,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.001808712463761555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5358.085213578447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2719664826909349, dt = 0.001808712463761555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.0408340855860843e-17,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018071033363194998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5371.588905944795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27377519515469645, dt = 0.0018071033363194998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018055107525143561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5260.169111695954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27558229849101595, dt = 0.0018055107525143561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.8%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 301.29 us (91.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (0,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018039351062303643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.393e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4666.671962191612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2773878092435303, dt = 0.0018039351062303643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (1.3%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018023767898642364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5282.610279944582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2791917443497607, dt = 0.0018023767898642364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001800836194326607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5151.925449195597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2809941211396249, dt = 0.001800836194326607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017993137090449643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5323.21049070331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2827949573339515, dt = 0.0017993137090449643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001797809721967998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5170.478836902462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28459427104299645, dt = 0.001797809721967998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017963246195713835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5377.386629127098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2863920807649645, dt = 0.0017963246195713835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.734723475976807e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017948587868649665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5061.146527631061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2881884053845359, dt = 0.0017948587868649665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.734723475976807e-17,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017934126074013296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5391.22553875937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28998326417140086, dt = 0.0017934126074013296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.734723475976807e-17,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017919864632857433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5229.552621379457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2917766767788022, dt = 0.0017919864632857433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.734723475976807e-17,0)
sum a = (1.3877787807814457e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017905807351874527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5374.244110278698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29356866324208797, dt = 0.0017905807351874527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001789195802352317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5257.904198086943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2953592439772754, dt = 0.001789195802352317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-2.42861286636753e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001787832042616743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5179.469089718379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29714843977962774, dt = 0.001787832042616743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.00178648983242294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5284.679536463489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29893627182224447, dt = 0.00178648983242294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.734723475976807e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017851695468354435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5295.787650768331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30072276165466744, dt = 0.0017851695468354435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017838715595588936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5295.938162739119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3025079312015029, dt = 0.0017838715595588936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.734723475976807e-17,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017825962429570733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5359.121915293021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30429180276106177, dt = 0.0017825962429570733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017813439680731606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5205.910319626986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30607439900401884, dt = 0.0017813439680731606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.122502256758253e-17,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001780115104651179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5237.330033666907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.307855742972092, dt = 0.001780115104651179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-3.122502256758253e-17,0)
sum a = (3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001778910021158657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5184.54959851807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3096358580767432, dt = 0.001778910021158657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-2.949029909160572e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017777290848104363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5107.187520372813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31141476809790186, dt = 0.0017777290848104363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.122502256758253e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017765726615936335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5282.497290844579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3131924971827123, dt = 0.0017765726615936335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 306.14 us (97.0%)
LB move op cnt : 0
LB apply : 2.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017754411162937452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.325e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4826.309746655952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31496906984430595, dt = 0.0017754411162937452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.949029909160572e-17,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017743348125218456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5443.2859558577275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3167445109605997, dt = 0.0017743348125218456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.0816681711721685e-17,0)
sum a = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017732541127428974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5146.567245956048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31851884577312156, dt = 0.0017732541127428974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.9081958235744878e-17,0)
sum a = (7.632783294297951e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017721993783051222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5328.376546979642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32029209988586443, dt = 0.0017721993783051222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum a = (5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017711709694704387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5064.294960007778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3220642992641696, dt = 0.0017711709694704387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.949029909160572e-17,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001770169245445933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5226.401855485019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32383547023364, dt = 0.001770169245445933 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-2.42861286636753e-17,0)
sum a = (-6.938893903907228e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017691945644163515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5113.0215401989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32560563947908594, dt = 0.0017691945644163515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.734723475976807e-17,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017682472835775977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5130.826712986664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3273748340435023, dt = 0.0017682472835775977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.9081958235744878e-17,0)
sum a = (2.0816681711721685e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017673277591712065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5104.0219347953525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3291430813270799, dt = 0.0017673277591712065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 284.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,-2.2551405187698492e-17,0)
sum a = (-6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001766436346519793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4941.017261476457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33091040908625113, dt = 0.001766436346519793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.34 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.5612511283791264e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001765573400063443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5094.334255510373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33267684543277093, dt = 0.001765573400063443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.734723475976807e-17,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017647392733970402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5024.381950531676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3344424188328344, dt = 0.0017647392733970402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-1.9081958235744878e-17,0)
sum a = (4.85722573273506e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017639343193085017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5204.223780467388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3362071581062314, dt = 0.0017639343193085017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.214306433183765e-17,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017631588898179128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4916.303862729961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3379710924255399, dt = 0.0017631588898179128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-5.204170427930421e-18,0)
sum a = (-7.632783294297951e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001762413336217541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5144.921524357701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33973425131535784, dt = 0.001762413336217541 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-5.204170427930421e-18,0)
sum a = (1.3183898417423734e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017616980091127107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5145.043858999524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34149666465157535, dt = 0.0017616980091127107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (7.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001761013258463534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5254.678198366587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34325836266068804, dt = 0.001761013258463534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-8.673617379884035e-18,0)
sum a = (-1.0408340855860843e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001760359433627449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5082.896490336526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34501937591915155, dt = 0.001760359433627449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.1275702593849246e-17,0)
sum a = (1.0061396160665481e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001759736883402602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5100.306439640039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.346779735352779, dt = 0.001759736883402602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.214306433183765e-17,0)
sum a = (3.8163916471489756e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017591459560720025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5279.329435120096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3485394722361816, dt = 0.0017591459560720025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.071532165918825e-18,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017585869994484738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5347.291317122011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3502986181922536, dt = 0.0017585869994484738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.474514954580286e-17,0)
sum a = (2.42861286636753e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017580603609203673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5024.478456600089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3520572051917021, dt = 0.0017580603609203673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.9949319973733282e-17,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001757566387498033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.313e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4819.967434894307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35381526555262244, dt = 0.001757566387498033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.31 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.6479873021779667e-17,0)
sum a = (3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001757105425861019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5058.238289419846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35557283194012046, dt = 0.001757105425861019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.734723475976807e-17,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017566778224060056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5038.030285225682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35732993736598145, dt = 0.0017566778224060056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-1.9081958235744878e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017562839232954403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5073.075537054811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35908661518838747, dt = 0.0017562839232954403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (4.5102810375396984e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017559240745068712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5285.165313487285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36084289911168294, dt = 0.0017559240745068712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (-1.734723475976807e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017555986218829624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5149.320683400133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3625988231861898, dt = 0.0017555986218829624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 235.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.7780915628762273e-17,0)
sum a = (7.28583859910259e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.00175530791118218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5102.76328747041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36435442180807276, dt = 0.00175530791118218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.96 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.211772431870429e-17,0)
sum a = (8.847089727481716e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017550522881301304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4968.333007245077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36610972971925493, dt = 0.0017550522881301304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.168404344971009e-17,0)
sum a = (1.474514954580286e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017548320984715467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5153.745765308828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36786478200738504, dt = 0.0017548320984715467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 275.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.734723475976807e-17,0)
sum a = (7.892991815694472e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017546476880229002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4843.376791808841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3696196141058566, dt = 0.0017546476880229002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 227.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.168404344971009e-17,0)
sum a = (-1.734723475976807e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017544994027256437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5296.476672026623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3713742617938795, dt = 0.0017544994027256437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 260.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.7321894746634712e-17,0)
sum a = (9.6710833785707e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017543875887000467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5043.355730538908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37312876119660515, dt = 0.0017543875887000467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.3635607360183997e-17,0)
sum a = (1.1254018550399536e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001754312592299639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5322.019870855239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3748831487853052, dt = 0.001754312592299639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-1.8106176280507924e-17,0)
sum a = (2.2985086056692694e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017542747601662467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5017.05205565144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37663746137760484, dt = 0.0017542747601662467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-2.6725583551767684e-17,0)
sum a = (-3.5128150388530344e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001754274439285583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5050.909176891284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3783917361377711, dt = 0.001754274439285583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-2.2586980571483173e-17,0)
sum a = (1.6479873021779667e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017543119770434298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5099.614408394748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3801460105770567, dt = 0.0017543119770434298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-6.0173220572945496e-18,0)
sum a = (1.0842021724855044e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017543877212823611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5175.29659602379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38190032255410017, dt = 0.0017543877212823611 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.5937771935536915e-17,0)
sum a = (3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017545020203590177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5141.205207646365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3836547102753825, dt = 0.0017545020203590177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.734723475976807e-18,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017546552232019271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5049.015468931079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38540921229574154, dt = 0.0017546552232019271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,3.903127820947816e-18,0)
sum a = (8.673617379884035e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017548476793698405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5188.963525974097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3871638675189435, dt = 0.0017548476793698405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 227.74 us (88.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,3.469446951953614e-18,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017550797391106122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5122.375767333648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38891871519831334, dt = 0.0017550797391106122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.6%)
patch tree reduce : 450.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 438.00 us (98.0%)
LB move op cnt : 0
LB apply : 1.79 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-1.0408340855860843e-17,0)
sum a = (8.673617379884035e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017553517534205723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.405e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4497.628893993898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39067379493742393, dt = 0.0017553517534205723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-2.6020852139652106e-18,0)
sum a = (-7.28583859910259e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017556640741044304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5293.843527243472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3924291466908445, dt = 0.0017556640741044304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,3.469446951953614e-18,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017560170538356615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5314.003439407246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39418481076494893, dt = 0.0017560170538356615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-1.734723475976807e-18,0)
sum a = (3.122502256758253e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017564110462174015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5152.581803295141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3959408278187846, dt = 0.0017564110462174015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 228.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,-8.239936510889834e-18,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017568464058438226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5055.644785573681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39769723886500197, dt = 0.0017568464058438226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-6.071532165918825e-18,0)
sum a = (3.469446951953614e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017573234883620054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5082.548456496793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3994540852708458, dt = 0.0017573234883620054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-3.469446951953614e-18,0)
sum a = (-2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017578426505342776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5176.405394167363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4012114087592078, dt = 0.0017578426505342776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-6.938893903907228e-18,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017584042503010384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5295.486569243295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4029692514097421, dt = 0.0017584042503010384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-6.071532165918825e-18,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001759008646844053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5212.875448662855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40472765566004315, dt = 0.001759008646844053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-8.673617379884035e-19,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017596562006502129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5162.323416161236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4064866643068872, dt = 0.0017596562006502129 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 291.36 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-1.1275702593849246e-17,0)
sum a = (1.3183898417423734e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017603472735757612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5010.323411182074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4082463205075374, dt = 0.0017603472735757612 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-6.071532165918825e-18,0)
sum a = (1.734723475976807e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017610822289109928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5210.8130873426235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41000666778111317, dt = 0.0017610822289109928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,0,0)
sum a = (-1.249000902703301e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017618614314454026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5144.33673407122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41176775001002414, dt = 0.0017618614314454026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.1275702593849246e-17,0)
sum a = (6.245004513516506e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017626852475333007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5115.795311122801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41352961144146955, dt = 0.0017626852475333007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.78 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,6.071532165918825e-18,0)
sum a = (-6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001763554045159893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4896.041907195524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41529229668900286, dt = 0.001763554045159893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017644681940078126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5203.80200697984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41705585073416274, dt = 0.0017644681940078126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-6.938893903907228e-18,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017654280655241248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5222.105435806559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41882031892817057, dt = 0.0017654280655241248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 235.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,5.204170427930421e-18,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017664340329877778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5240.831828467333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42058574699369466, dt = 0.0017664340329877778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,5.204170427930421e-18,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001767486471577535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5261.9902034291845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4223521810266824, dt = 0.001767486471577535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.734723475976807e-18,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017685857584403635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5212.150225164586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42411966749825997, dt = 0.0017685857584403635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.734723475976807e-18,0)
sum a = (1.5265566588595902e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001769732272760295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5176.857829416803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4258882532567003, dt = 0.001769732272760295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,3.469446951953614e-18,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017709263958277613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5243.862659429938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4276579855294606, dt = 0.0017709263958277613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017721685111094082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5250.477891897675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42942891192528837, dt = 0.0017721685111094082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 278.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017734590043183937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5097.0397445282015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43120108043639777, dt = 0.0017734590043183937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-3.469446951953614e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017747982634851733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4922.996812729038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4329745394407162, dt = 0.0017747982634851733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 662.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-8.673617379884035e-18,0)
sum a = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017761866790287825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.323e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4830.544113057124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4347493377042014, dt = 0.0017761866790287825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-5.204170427930421e-18,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017776246438286302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5222.508301837043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43652552438323017, dt = 0.0017776246438286302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,8.673617379884035e-18,0)
sum a = (-1.457167719820518e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017791125532967934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5041.667232156529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4383031490270588, dt = 0.0017791125532967934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 284.58 us (97.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.734723475976807e-18,0)
sum a = (-2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017806508054508449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.295e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4946.56328269365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44008226158035557, dt = 0.0017806508054508449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,8.673617379884035e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001782239800987207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5136.525634477658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44186291238580644, dt = 0.001782239800987207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,0,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017838799433550503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4984.337312286274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4436451521867936, dt = 0.0017838799433550503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-1.0408340855860843e-17,0)
sum a = (-9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017855716388307519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5180.522843443831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44542903213014867, dt = 0.0017855716388307519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.214306433183765e-17,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017873152965929156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4993.112316665727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4472146037689794, dt = 0.0017873152965929156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (42.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-8.673617379884035e-18,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017891113287979855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5201.345673208964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44900191906557235, dt = 0.0017891113287979855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.734723475976807e-18,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017909601506564492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5358.327530869154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45079103039437035, dt = 0.0017909601506564492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,6.938893903907228e-18,0)
sum a = (1.249000902703301e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017928621805096622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5387.214933037003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4525819905450268, dt = 0.0017928621805096622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001794817839907304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5252.06858601569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45437485272553646, dt = 0.001794817839907304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,0,0)
sum a = (-9.71445146547012e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017968275536854844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5373.89828783489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4561696705654438, dt = 0.0017968275536854844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,0,0)
sum a = (-1.249000902703301e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001798891750045529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5162.465178242129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45796649811912926, dt = 0.001798891750045529 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,0,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018010108606334523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5456.611581179527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4597653898691748, dt = 0.0018010108606334523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018031853206201503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5332.760135218515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46156640072980826, dt = 0.0018031853206201503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.3877787807814457e-17,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018054155687823384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5212.367746375286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4633695860504284, dt = 0.0018054155687823384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018077020475842527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5423.025488207274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4651750016192107, dt = 0.0018077020475842527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-3.469446951953614e-18,0)
sum a = (8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018100452032601539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5231.060822313571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46698270366679495, dt = 0.0018100452032601539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018124454858976507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5421.749969827129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4687927488700551, dt = 0.0018124454858976507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 269.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-3.469446951953614e-18,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018149033495218887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5167.056351696304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47060519435595277, dt = 0.0018149033495218887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.0408340855860843e-17,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018174192521806215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5092.130904722668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47242009770547466, dt = 0.0018174192521806215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 432.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.0408340855860843e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018199936560302152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5313.090213548322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47423751695765526, dt = 0.0018199936560302152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018226270274226133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5334.374236078452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47605751061368545, dt = 0.0018226270274226133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018253198369933047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5269.07451010611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4778801376411081, dt = 0.0018253198369933047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.0408340855860843e-17,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018280725597503377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5411.52181496818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4797054574781014, dt = 0.0018280725597503377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.42861286636753e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018308856751644252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5618.355927008337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4815335300378517, dt = 0.0018308856751644252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 237.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.7755575615628914e-17,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018337596672601882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5515.712704598497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48336441571301614, dt = 0.0018337596672601882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018366950247085754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5395.628107087045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4851981753802763, dt = 0.0018366950247085754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-1.0408340855860843e-17,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018396922409205376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5518.454730466934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4870348704049849, dt = 0.0018396922409205376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-2.42861286636753e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018427518141419814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5332.007676762143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48887456264590545, dt = 0.0018427518141419814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 274.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018458742475500848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5149.880823613035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49071731446004746, dt = 0.0018458742475500848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.734723475976807e-17,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018490600493510235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5475.575347998518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4925631887075975, dt = 0.0018490600493510235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-1.0408340855860843e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018523097328791785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.8% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5289.275094447796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49441224875694856, dt = 0.0018523097328791785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (1.249000902703301e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018556238166978912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5266.0418249629565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49626455848982776, dt = 0.0018556238166978912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.00185900282470184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5476.284576064605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49812018230652566, dt = 0.00185900282470184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-2.42861286636753e-17,0)
sum a = (-6.938893903907228e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018624472862211138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5446.581014088155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4999791851312275, dt = 0.0018624472862211138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018659577361270655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5482.7761789700835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5018416324174486, dt = 0.0018659577361270655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-1.0408340855860843e-17,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018695347149400318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5454.767386009244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5037075901535757, dt = 0.0018695347149400318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.001873178768939003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5243.609590265677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5055771248685157, dt = 0.001873178768939003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,0,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001876890450273342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5343.847228308569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5074503036374547, dt = 0.001876890450273342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.0408340855860843e-17,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018806703170766575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5282.753600955747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5093271940877281, dt = 0.0018806703170766575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.0408340855860843e-17,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018845189335829253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5306.111955638256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5112078644048047, dt = 0.0018845189335829253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.3877787807814457e-17,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001888436870244986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5627.744213954106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5130923833383876, dt = 0.001888436870244986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.734723475976807e-17,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018924247038555077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5675.6260611010075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5149808202086326, dt = 0.0018924247038555077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.734723475976807e-17,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018964830176705842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5619.0374707138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5168732449124881, dt = 0.0018964830176705842 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019006124015360437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5515.330082313127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5187697279301586, dt = 0.0019006124015360437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019048134520166448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5637.387768939727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5206703403316947, dt = 0.0019048134520166448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,3.469446951953614e-18,0)
sum a = (4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001909086772528301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5633.945361694721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5225751537837113, dt = 0.001909086772528301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,0,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019134329734734636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5548.214802399148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5244842405562397, dt = 0.0019134329734734636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,0,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019178526723798491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5721.603580720386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5263976735297131, dt = 0.0019178526723798491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,-3.469446951953614e-18,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019223464940426689 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5637.707819537894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.528315526202093, dt = 0.0019223464940426689 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.51 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,-1.0408340855860843e-17,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019269150706705438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5616.092944024975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5302378726961356, dt = 0.0019269150706705438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019315590420352835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5444.155746205991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5321647877668062, dt = 0.0019315590420352835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019362790556257514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5774.269893922413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5340963468088414, dt = 0.0019362790556257514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019410757668060006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5653.672135128649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5360326258644672, dt = 0.0019410757668060006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,0,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001945949838977912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5719.733489372383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5379737016312732, dt = 0.001945949838977912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 266.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,0,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019509019437485729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5605.295162788256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5399196514702511, dt = 0.0019509019437485729 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 249.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019559327611026315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5744.2120265934345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5418705534139997, dt = 0.0019559327611026315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019610429795798886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5664.93233559335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5438264861751023, dt = 0.0019610429795798886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.00196623329645842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5821.5322759828705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5457875291546822, dt = 0.00196623329645842 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 262.07 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019715044179434604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5734.887604038892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5477537624511406, dt = 0.0019715044179434604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019768570593624367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5934.716016269097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5497252668690841, dt = 0.0019768570593624367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001982291945366381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5763.394320173478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5517021239284465, dt = 0.001982291945366381 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-2.0816681711721685e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.00198780981013813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5829.660789818524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5536844158738129, dt = 0.00198780981013813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019934113976076244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5763.484545715927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.555672225683951, dt = 0.0019934113976076244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019990974616746955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6044.665287567267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5576656370815587, dt = 0.0019990974616746955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-1.3877787807814457e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002004868766439739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5867.029659019701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5596647345432334, dt = 0.002004868766439739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,-1.3877787807814457e-17,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020107260864426686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5979.8434759125785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5616696033096732, dt = 0.0020107260864426686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-1.3877787807814457e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020166702069106296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5837.794303506982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5636803293961159, dt = 0.0020166702069106296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020227019240148746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5976.297965574828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5656969996030266, dt = 0.0020227019240148746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002028822045137344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5966.667453118727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5677197015270414, dt = 0.002028822045137344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020350313891474296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5762.343895212804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5697485235721788, dt = 0.0020350313891474296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,0,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002041330786689467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5936.516876538191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5717835549613262, dt = 0.002041330786689467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.78 us (8.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 252.81 us (89.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002047721080481539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 2.0% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5873.305018611515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5738248857480156, dt = 0.002047721080481539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,0,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002054203125626172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6135.258982788458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5758726068284972, dt = 0.002054203125626172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002060777789933572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6028.55933623782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5779268099541234, dt = 0.002060777789933572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,-6.938893903907228e-18,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020674459542580578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6261.30935175755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5799875877440569, dt = 0.0020674459542580578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002074208512848401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5912.938922128783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5820550336983149, dt = 0.002074208512848401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,-6.938893903907228e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020810663737128006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6075.907560722653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5841292422111634, dt = 0.0020810663737128006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002088020458999294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6281.04766754173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5862103085848761, dt = 0.002088020458999294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 230.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020950717053924116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6166.481939047406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5882983290438754, dt = 0.0020950717053924116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021022210645269407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6106.854259439861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5903934007492677, dt = 0.0021022210645269407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (60.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,0,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002109469503419724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6302.807976035479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5924956218137947, dt = 0.002109469503419724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.00211681800492046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6274.697103057003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5946050913172144, dt = 0.00211681800492046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-1.3877787807814457e-17,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021242675681825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6157.603019525684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5967219093221349, dt = 0.0021242675681825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (60.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002131819209154739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6333.812808533636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5988461768903174, dt = 0.002131819209154739 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,0,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002139473961095722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6091.666232451844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6009779960994721, dt = 0.002139473961095722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 222.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,0,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021472328751111465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6259.534044133576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6031174700605678, dt = 0.0021472328751111465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,0,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002155097020716041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6107.149002951743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6052647029356789, dt = 0.002155097020716041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.00216306748642292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6347.886894042802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.607419799956395, dt = 0.00216306748642292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.69 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021711453803573374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6156.334578868173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6095828674428179, dt = 0.0021711453803573374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,-6.938893903907228e-18,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021793318309022806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6453.717739588354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6117540128231752, dt = 0.0021793318309022806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,0,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002187627987373013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6496.811124188755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6139333446540775, dt = 0.002187627987373013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002196035020723932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.920989349098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6161209726414505, dt = 0.002196035020723932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.07 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,6.938893903907228e-18,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022045541242892404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6248.029996171826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6183170076621745, dt = 0.0022045541242892404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002213186514559214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6623.155562507314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6205215617864637, dt = 0.002213186514559214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0816681711721685e-17,0)
sum a = (0,1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022219334319939967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6595.703611083612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6227347483010229, dt = 0.0022219334319939967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0816681711721685e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022307961418769726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6491.645671723819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6249566817330169, dt = 0.0022307961418769726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,2.7755575615628914e-17,0)
sum a = (-5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022397759352098165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6274.937734606652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6271874778748938, dt = 0.0022397759352098165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-17,2.0816681711721685e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.00224887412965154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6434.637972914469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6294272538101037, dt = 0.00224887412965154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-17,2.0816681711721685e-17,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022580920705038377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6759.866093275696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6316761279397552, dt = 0.0022580920705038377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022674311317453285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.401e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5802.386194565456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6339342200102591, dt = 0.0022674311317453285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-17,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002276892717117283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6840.543433937418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6362016511420044, dt = 0.002276892717117283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-17,1.3877787807814457e-17,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022864782612636685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6871.454507642619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6384785438591217, dt = 0.0022864782612636685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8163916471489756e-17,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022961892309284453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6818.941635379577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6407650221203854, dt = 0.0022961892309284453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-17,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002306027126213238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6926.542461832331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6430612113513139, dt = 0.002306027126213238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.6%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 410.31 us (97.8%)
LB move op cnt : 0
LB apply : 2.04 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002315993481898671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.431e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5803.345716655871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6453672384775271, dt = 0.002315993481898671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.72 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002326089868832823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.286e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6483.42167152563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6476832319594258, dt = 0.002326089868832823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 235.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8163916471489756e-17,0,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002336317895390467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6819.461399165404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6500093218282587, dt = 0.002336317895390467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,0,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023466792090069593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6763.31025761483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6523456397236491, dt = 0.0023466792090069593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,-6.938893903907228e-18,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023571754977908398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6880.1038789351305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6546923189326561, dt = 0.0023571754977908398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,0,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023678084922194404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6890.747726760946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6570494944304469, dt = 0.0023678084922194404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,0,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023785799669220533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7153.872198780052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6594173029226663, dt = 0.0023785799669220533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8163916471489756e-17,0,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.002389491742555403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6885.486880108611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6617958828895883, dt = 0.002389491742555403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024005456877765094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7045.115259472839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6641853746321438, dt = 0.0024005456877765094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.002411743721318225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6889.189361807039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6665859203199203, dt = 0.002411743721318225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,0,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002423087814173081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7021.195859183999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6689976640412385, dt = 0.002423087814173081 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 275.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,0,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002434579991891344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.294e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6743.036846980856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6714207518554116, dt = 0.002434579991891344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,0,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.002446222336999521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7309.825405323963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.673855331847303, dt = 0.002446222336999521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002458016991545903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7249.7309367322005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6763015541843025, dt = 0.002458016991545903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002469966159780057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7360.513763075121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6787595711758484, dt = 0.002469966159780057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.2%)
patch tree reduce : 1.98 us (0.4%)
gen split merge : 420.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.97 us (0.4%)
LB compute : 441.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002482072110973569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.445e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6152.612180296567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6812295373356284, dt = 0.002482072110973569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.002494337182389738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7169.071959422692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.683711609446602, dt = 0.002494337182389738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025067637824103205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7281.944911585485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6862059466289918, dt = 0.0025067637824103205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,-2.0816681711721685e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002519354393827809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7407.591022811404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6887127104114021, dt = 0.002519354393827809 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,-6.938893903907228e-18,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025321115773122593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7192.179052628579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6912320648052299, dt = 0.0025321115773122593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,-1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025450379750620636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7138.255059153264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6937641763825422, dt = 0.0025450379750620636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,1.734723475976807e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002558136314648559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7675.146208619314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6963092143576043, dt = 0.002558136314648559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,-2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025714094130649067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7466.498082749773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6988673506722528, dt = 0.0025714094130649067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025848601809901235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7705.334998384084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7014387600853177, dt = 0.0025848601809901235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,-1.3877787807814457e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025984916272797083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7535.004240239588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7040236202663078, dt = 0.0025984916272797083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026123068636948483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7672.5919282810955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7066221118935875, dt = 0.0026123068636948483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.45931094670027e-17,-6.938893903907228e-18,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026263091098827165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7452.744056226178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7092344187572823, dt = 0.0026263091098827165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.45931094670027e-17,1.3877787807814457e-17,0)
sum a = (-8.326672684688674e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.002640501698620958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7605.613278475082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.711860727867165, dt = 0.002640501698620958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.765421556309548e-17,0,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.00265488808133999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7930.221731249138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.714501229565786, dt = 0.00265488808133999 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.806255641895632e-17,1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026694718339373177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7353.870172193046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.717156117647126, dt = 0.0026694718339373177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.153200337090993e-17,6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026842566628986256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7674.632924855128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7198255894810632, dt = 0.0026842566628986256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.765421556309548e-17,-6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002699246411740896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7785.53161597745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7225098461439619, dt = 0.002699246411740896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,0,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027144450677933653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8144.707045853777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7252090925557028, dt = 0.0027144450677933653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,0,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027298567693325357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8072.345650340064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7279235376234962, dt = 0.0027298567693325357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.002745485813087945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8004.956010016599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7306533943928287, dt = 0.002745485813087945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.06 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.0816681711721685e-17,0)
sum a = (2.7755575615628914e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027613366621356476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7882.324313661794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7333988802059167, dt = 0.0027613366621356476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027774139541967076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8007.936379716225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7361602168680523, dt = 0.0027774139541967076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.984795992119984e-17,2.0816681711721685e-17,0)
sum a = (-2.7755575615628914e-17,2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027937225103580594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8262.752117283766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7389376308222491, dt = 0.0027937225103580594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 296.11 us (97.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.7755575615628914e-17,0)
sum a = (-5.551115123125783e-17,7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.002810267344233106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.309e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7684.473914775815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7417313533326071, dt = 0.002810267344233106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum a = (5.551115123125783e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028270536715792292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8347.776439527846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7445416206768402, dt = 0.0028270536715792292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.46 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,6.418476861114186e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028440869203889135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8076.238601838032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7473686743484194, dt = 0.0028440869203889135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.678685382510707e-17,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,2.949029909160572e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028613727414705022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8431.37236467971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7502127612688083, dt = 0.0028613727414705022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.505213034913027e-17,0,0)
sum a = (-2.7755575615628914e-17,6.071532165918825e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028789170195334854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8120.690707463342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7530741340102788, dt = 0.0028789170195334854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.765421556309548e-17,0,0)
sum a = (0,-1.214306433183765e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.00289672588479177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8505.57384596112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7559530510298123, dt = 0.00289672588479177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.62 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.895525817007808e-17,6.938893903907228e-18,0)
sum a = (-2.7755575615628914e-17,2.6020852139652106e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.002914805725096302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 2.1% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8318.85847400599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.758849776914604, dt = 0.002914805725096302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,0,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029331631986058006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8592.945036655265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7617645826397003, dt = 0.0029331631986058006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,-1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,9.974659986866641e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029518052470009245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8561.376317000815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7646977458383061, dt = 0.0029518052470009245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.375108774214766e-17,-1.3877787807814457e-17,0)
sum a = (-8.326672684688674e-17,-2.168404344971009e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.002970739109242876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8818.363915285383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.767649551085307, dt = 0.002970739109242876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.41594285980085e-17,0,0)
sum a = (-5.551115123125783e-17,4.423544863740858e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029899723358719635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8758.491209516269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7706202901945498, dt = 0.0029899723358719635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.806255641895632e-17,-6.938893903907228e-18,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030095128038349394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8599.98163110265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7736102625304218, dt = 0.0030095128038349394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.386303804175377e-17,0,0)
sum a = (-2.7755575615628914e-17,-3.2959746043559335e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030293687318215016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8772.82517891475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7766197753342567, dt = 0.0030293687318215016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 286.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.4893030105615e-17,1.3877787807814457e-17,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030495486960800872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8489.84784261503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7796491440660782, dt = 0.0030495486960800872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.348356728138384e-17,2.0816681711721685e-17,0)
sum a = (8.326672684688674e-17,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.003070061646670535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8922.896799219996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7826986927621583, dt = 0.003070061646670535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.109832250191573e-17,1.3877787807814457e-17,0)
sum a = (-1.1102230246251565e-16,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.00309091692409585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8715.988397853322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7857687544088289, dt = 0.00309091692409585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.283304597789254e-17,2.7755575615628914e-17,0)
sum a = (-1.1102230246251565e-16,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031121242762367374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8912.007559620062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7888596713329247, dt = 0.0031121242762367374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.890457814381136e-17,2.7755575615628914e-17,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031336938754900727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8921.834651359224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7919717956091614, dt = 0.0031336938754900727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.150666335777657e-17,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031556363359852985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9317.126551964888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7951054894846515, dt = 0.0031556363359852985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.3877787807814457e-17,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031779627307200334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9332.405710651134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7982611258206368, dt = 0.0031779627307200334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.760353553682876e-17,2.7755575615628914e-17,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.003200684608416779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9564.366640521228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8014390885513568, dt = 0.003200684608416779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.01 us (9.6%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 231.15 us (88.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.933825901280557e-17,2.7755575615628914e-17,0)
sum a = (0,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032238140098553893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9613.902960649337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8046397731597736, dt = 0.0032238140098553893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.413408858487514e-17,2.7755575615628914e-17,0)
sum a = (-1.1102230246251565e-16,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032473634833792425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9481.976339018676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.807863587169629, dt = 0.0032473634833792425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.003271346099205341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9474.084392805902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8111109506530083, dt = 0.003271346099205341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.066464163292153e-17,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032957754620873436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9495.404184530462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8143822967522136, dt = 0.0032957754620873436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.153200337090993e-17,2.0816681711721685e-17,0)
sum a = (-1.1102230246251565e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.003320665721783845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9888.537732134217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.817678072214301, dt = 0.003320665721783845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.153200337090993e-17,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033460315806687234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9712.380883007507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8209987379360848, dt = 0.0033460315806687234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.500145032286355e-17,2.7755575615628914e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033718882976829746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9778.611146393983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8243447695167535, dt = 0.0033718882976829746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.500145032286355e-17,3.469446951953614e-17,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033982516876640964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9749.122268556857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8277166578144365, dt = 0.0033982516876640964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum a = (-1.6653345369377348e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034251381148951506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.400e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8740.452948091684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8311149095021005, dt = 0.0034251381148951506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.500145032286355e-17,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.003452564479485972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9574.140469123702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8345400476169957, dt = 0.003452564479485972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum a = (-8.326672684688674e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034805481949274136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10133.969178885389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8379926120964817, dt = 0.0034805481949274136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035091071548393788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10278.322047448288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8414731602914091, dt = 0.0035091071548393788 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.153200337090993e-17,2.7755575615628914e-17,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035382596865568953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10330.820646798817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8449822674462485, dt = 0.0035382596865568953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.153200337090993e-17,2.7755575615628914e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035680244887573674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10454.837471092094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8485205271328053, dt = 0.0035680244887573674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.7755575615628914e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.003598420549817536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10688.076977728768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8520885516215627, dt = 0.003598420549817536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.3%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036294670429909207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10976.957742485092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8556869721713802, dt = 0.0036294670429909207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.0816681711721685e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036611831938070916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10606.08482766828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8593164392143712, dt = 0.0036611831938070916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.0816681711721685e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036935881143041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10731.755761858665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8629776224081782, dt = 0.0036935881143041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,4.163336342344337e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00372670059780917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10975.808177217656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8666712105224823, dt = 0.00372670059780917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,5.551115123125783e-17,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037605388669776007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10746.627613128943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8703979111202915, dt = 0.0037605388669776007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,4.163336342344337e-17,0)
sum a = (-1.1102230246251565e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.003795120266689457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10886.48264139452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8741584499872691, dt = 0.003795120266689457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.6%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 458.25 us (98.1%)
LB move op cnt : 0
LB apply : 1.54 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (60.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,4.85722573273506e-17,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038304608922017118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.457e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9376.699797319567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8779535702539586, dt = 0.0038304608922017118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,4.85722573273506e-17,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038665751416870737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11485.314602057048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8817840311461603, dt = 0.0038665751416870737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.003903475181008551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11486.34562181918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8856506062878474, dt = 0.003903475181008551 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,4.85722573273506e-17,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.003941170307357082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11645.839657259765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.889554081468856, dt = 0.003941170307357082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.003979666197334764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11095.029759761568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.893495251776213, dt = 0.003979666197334764 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 233.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,5.551115123125783e-17,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040189640243661826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11457.533920763923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8974749179735478, dt = 0.0040189640243661826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,6.245004513516506e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.004059059430200394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11560.106144941476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.901493881997914, dt = 0.004059059430200394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.24 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,5.551115123125783e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.004099941336045625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11922.134038189217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9055529414281144, dt = 0.004099941336045625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 264.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0041415905809777925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11886.462373705937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.90965288276416, dt = 0.0041415905809777925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,6.245004513516506e-17,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.004183978379217203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12476.194457756765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9137944733451377, dt = 0.004183978379217203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,5.551115123125783e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.004227064594329409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11783.936702932488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.917978451724355, dt = 0.004227064594329409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,5.551115123125783e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.004270795838139209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12695.899867000835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9222055163186844, dt = 0.004270795838139209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,6.245004513516506e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.004315103415982064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12276.89983582838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9264763121568236, dt = 0.004315103415982064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,7.632783294297951e-17,0)
sum a = (-1.6653345369377348e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.004359901158670927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12992.353394194335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9307914155728056, dt = 0.004359901158670927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,6.245004513516506e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.004405083205882239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12953.995742329922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9351513167314766, dt = 0.004405083205882239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,6.245004513516506e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044505218358257955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12785.260014589385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9395563999373588, dt = 0.0044505218358257955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,6.245004513516506e-17,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044960654716111985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13301.121006061896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9440069217731847, dt = 0.0044960654716111985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 228.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,8.326672684688674e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.004541537034086699 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13306.299303356707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9485029872447959, dt = 0.004541537034086699 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,9.020562075079397e-17,0)
sum a = (1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.004586732850950608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13564.77912234794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9530445242788825, dt = 0.004586732850950608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.004631422367462386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13731.853718135308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9576312571298331, dt = 0.004631422367462386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.004675348927726434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14005.19995704693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9622626794972955, dt = 0.004675348927726434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,9.020562075079397e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.004718231897885554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13876.44711952489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.966938028425022, dt = 0.004718231897885554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,8.326672684688674e-17,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.004759770373128142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13701.219578652219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9716562603229075, dt = 0.004759770373128142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 295.39 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,7.632783294297951e-17,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.004799648639383774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13578.136167685163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9764160306960357, dt = 0.004799648639383774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.004837543441662317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13693.415506536223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9812156793354194, dt = 0.004837543441662317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.004873132944836262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13644.231820573374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9860532227770817, dt = 0.004873132944836262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,6.245004513516506e-17,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049061070701541115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14113.511766498452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.990926355721918, dt = 0.0049061070701541115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,6.245004513516506e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.004936178674836727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14075.14569848211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9958324627920722, dt = 0.004936178674836727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (7.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,6.938893903907228e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.004963094846657584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14466.92373211582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0007686414669088, dt = 0.004963094846657584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,7.979727989493313e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049866474503256885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14807.522337466042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0057317363135665, dt = 0.0049866474503256885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,8.326672684688674e-17,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.005006682024889204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14494.967937811953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0107183837638922, dt = 0.005006682024889204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,8.673617379884035e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.005023104214977258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15174.95709501253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0157250657887815, dt = 0.005023104214977258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,7.979727989493313e-17,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.005035883124686518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14852.649618620151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0207481700037588, dt = 0.005035883124686518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,8.673617379884035e-17,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0050450512860413885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15188.261069686916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0257840531284454, dt = 0.0050450512860413885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,8.673617379884035e-17,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.005050701286208881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14558.842093839527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0308291044144868, dt = 0.005050701286208881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 228.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,8.673617379884035e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.005052979439236633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15155.096990282222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0358798057006957, dt = 0.005052979439236633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.005052077162286906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14671.632277957764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0409327851399324, dt = 0.005052077162286906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 252.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,8.326672684688674e-17,0)
sum a = (-4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.005048220883258992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14869.303493775822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0459848623022192, dt = 0.005048220883258992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,8.326672684688674e-17,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.00504166135133709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14226.607793364661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0510330831854782, dt = 0.00504166135133709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,7.979727989493313e-17,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.005032663154650563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14762.346999957317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0560747445368153, dt = 0.005032663154650563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.00502149509903627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14693.966607116836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0611074076914657, dt = 0.00502149509903627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,7.979727989493313e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0050084219068569176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15156.574115337913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.066128902790502, dt = 0.0050084219068569176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,7.632783294297951e-17,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.004993697491921105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14712.2623393021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.071137324697359, dt = 0.004993697491921105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,7.28583859910259e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004977559884613864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15007.493157476172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0761310221892801, dt = 0.004977559884613864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,7.28583859910259e-17,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.004960227737922824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14725.72190391696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.081108582073894, dt = 0.004960227737922824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,7.112366251504909e-17,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.004941898246652483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14654.431010984708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0860688098118167, dt = 0.004941898246652483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,6.938893903907228e-17,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049227462567310995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14771.520189661864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0910107080584692, dt = 0.0049227462567310995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,6.938893903907228e-17,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049029243218529596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14243.416355545949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0959334543152004, dt = 0.0049029243218529596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,7.112366251504909e-17,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.004882563471286176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14266.02682310385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1008363786370534, dt = 0.004882563471286176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,6.938893903907228e-17,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.00486177447610061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14133.081366180293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1057189421083395, dt = 0.00486177447610061 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,6.938893903907228e-17,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.00484064943332645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14408.091891295646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1105807165844401, dt = 0.00484064943332645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 285.03 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.765421556309548e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.00481926352259782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13655.34591015607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1154213660177665, dt = 0.00481926352259782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.678685382510707e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.00479767682359998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14307.49038133751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1202406295403644, dt = 0.00479767682359998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.70 us (8.7%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.54 us (89.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.678685382510707e-17,0)
sum a = (6.938893903907228e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.004775936112741224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13961.819670283241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1250383063639644, dt = 0.004775936112741224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 243.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.591949208711867e-17,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.004754076582810651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14222.443734225948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1298142424767057, dt = 0.004754076582810651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.591949208711867e-17,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00473212344973671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13956.910696193798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1345683190595164, dt = 0.00473212344973671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.548581121812447e-17,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0047100934262423524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14136.971507260456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.139300442509253, dt = 0.0047100934262423524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.591949208711867e-17,0)
sum a = (1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.00468799605379484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13958.244910208734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1440105359354953, dt = 0.00468799605379484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.657001339060997e-17,0)
sum a = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.004665834892469755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13547.403102096414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1486985319892902, dt = 0.004665834892469755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.723408722125734e-17,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046436085738818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13945.99746012321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.15336436688176, dt = 0.0046436085738818 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,6.982261990806649e-17,0)
sum a = (6.938893903907228e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046213117258053615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13148.22165503496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1580079754556418, dt = 0.0046213117258053615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,6.635317295611287e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.004598935779047909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13608.72619876851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1626292871814472, dt = 0.004598935779047909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,6.938893903907228e-17,0)
sum a = (-1.0408340855860843e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.004576469667981523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13525.972285415424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.167228222960495, dt = 0.004576469667981523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,7.025630077706069e-17,0)
sum a = (3.469446951953614e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.004553900436222957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13737.296501685953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1718046926284766, dt = 0.004553900436222957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,6.852157730108388e-17,0)
sum a = (8.673617379884035e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.004531213758538769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12845.639256125949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1763585930646996, dt = 0.004531213758538769 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,6.938893903907228e-17,0)
sum a = (-4.553649124439119e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.004508394389330907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13577.732698804208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1808898068232383, dt = 0.004508394389330907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.49 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,6.505213034913027e-17,0)
sum a = (-1.431146867680866e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.004485426547168277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12837.905876874256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1853982012125692, dt = 0.004485426547168277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,6.591949208711867e-17,0)
sum a = (-1.9081958235744878e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.004462294243866946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13263.669060629392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1898836277597375, dt = 0.004462294243866946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.591949208711867e-17,0)
sum a = (-1.0408340855860843e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.004438981565651479 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13047.951322700912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1943459220036046, dt = 0.004438981565651479 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.591949208711867e-17,0)
sum a = (-1.0408340855860843e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.004415472912994309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13450.768635907854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1987849035692562, dt = 0.004415472912994309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.071532165918825e-17,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.004391753204854505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12950.879665027009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2032003764822505, dt = 0.004391753204854505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,7.112366251504909e-17,0)
sum a = (3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.004367808052235603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13156.774346606533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.207592129687105, dt = 0.004367808052235603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 282.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.765421556309548e-17,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.004343623905260179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12295.506891385363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2119599377393406, dt = 0.004343623905260179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.938893903907228e-17,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.004319188177317177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12503.56511592902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2163035616446007, dt = 0.004319188177317177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,7.28583859910259e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.004294489349273819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12734.686297272106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.220622749821918, dt = 0.004294489349273819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.004269517056252801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12387.721746623058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2249172391711918, dt = 0.004269517056252801 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,7.632783294297951e-17,0)
sum a = (6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.004244262159051593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12768.436995863065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2291867562274446, dt = 0.004244262159051593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.591949208711867e-17,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.004218716801918069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12243.525014632549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.233431018386496, dt = 0.004218716801918069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.591949208711867e-17,0)
sum a = (4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.004192874458089393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12344.262331074337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2376497351884141, dt = 0.004192874458089393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,5.204170427930421e-17,0)
sum a = (8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.004166729964243569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12213.550181388006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2418426096465036, dt = 0.004166729964243569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,4.85722573273506e-17,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.004140279544799378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12117.929797275645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2460093396107472, dt = 0.004140279544799378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,5.898059818321144e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.004113520826826597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12172.529182842465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2501496191555466, dt = 0.004113520826826597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,5.204170427930421e-17,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.004086452846188906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12068.488465107659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2542631399823732, dt = 0.004086452846188906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 276.56 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,3.8163916471489756e-17,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.004059076045433522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11930.620240036058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.258349592828562, dt = 0.004059076045433522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,3.469446951953614e-17,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040313922638601195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12082.27155047347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2624086688739955, dt = 0.0040313922638601195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 262.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,3.122502256758253e-17,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0040034047201437635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11784.815562388038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2664400611378557, dt = 0.0040034047201437635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.7755575615628914e-17,0)
sum a = (6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.003975117987849289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11662.949829264928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2704434658579995, dt = 0.003975117987849289 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.7755575615628914e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0039465379641547916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11896.524718646346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2744185838458488, dt = 0.0039465379641547916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.7755575615628914e-17,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.003917671832097022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11754.20976335877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2783651218100036, dt = 0.003917671832097022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 242.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,4.163336342344337e-17,0)
sum a = (6.938893903907228e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.003888528016658639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11585.0801059223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2822827936421006, dt = 0.003888528016658639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,3.469446951953614e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.003859116135034445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11195.503516490988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2861713216587594, dt = 0.003859116135034445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,3.469446951953614e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038294469414380484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11211.788055552059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.290030437793794, dt = 0.0038294469414380484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,3.469446951953614e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037995322668400323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10996.144244477782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2938598847352318, dt = 0.0037995322668400323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,4.163336342344337e-17,0)
sum a = (1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037693849540614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11358.831424840302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2976594170020719, dt = 0.0037693849540614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,4.163336342344337e-17,0)
sum a = (8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037390187886797736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10699.36120937099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3014288019561333, dt = 0.0037390187886797736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,4.163336342344337e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037084484262388984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11237.292857593704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3051678207448132, dt = 0.0037084484262388984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 267.72 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,5.551115123125783e-17,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036776893162827457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10398.328790762545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.308876269171052, dt = 0.0036776893162827457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.003646757623762384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11025.588924361211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3125539584873347, dt = 0.003646757623762384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036156701483857447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10357.589416038858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3162007161110971, dt = 0.0036156701483857447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,4.85722573273506e-17,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.003584444242496271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10549.633849658443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.319816386259483, dt = 0.003584444242496271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035530977280755914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10410.33811252635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3234008305019793, dt = 0.0035530977280755914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035216488134671734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10514.854137886012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3269539282300549, dt = 0.0035216488134671734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034901160104122385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10546.253206592835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3304755770435222, dt = 0.0034901160104122385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,3.469446951953614e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.003458518051975839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10508.309298577828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3339656930539343, dt = 0.003458518051975839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 245.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,4.163336342344337e-17,0)
sum a = (1.6653345369377348e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034268738119204033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10210.493027395478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3374242111059103, dt = 0.0034268738119204033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.2%)
LB compute : 229.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,5.551115123125783e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.003395202226056273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10422.251143593357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3408510849178306, dt = 0.003395202226056273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,5.551115123125783e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.003363522216064761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9985.497312035624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.344246287143887, dt = 0.003363522216064761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,6.245004513516506e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033318526162494705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9428.233261569056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3476098093599518, dt = 0.0033318526162494705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,6.245004513516506e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033002121036270634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9768.242700896302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3509416619762014, dt = 0.0033002121036270634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,5.551115123125783e-17,0)
sum a = (1.942890293094024e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032686191317203355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9859.211191856737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3542418740798283, dt = 0.0032686191317203355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,6.245004513516506e-17,0)
sum a = (1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032370918683651147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9783.526495934038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3575104932115487, dt = 0.0032370918683651147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,5.551115123125783e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.00320564813778951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9697.07746750334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3607475850799138, dt = 0.00320564813778951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.245004513516506e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031743053671700995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9653.910846986782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3639532332177033, dt = 0.0031743053671700995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.245004513516506e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031430805378159558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9178.810157706352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3671275385848733, dt = 0.0031430805378159558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,7.632783294297951e-17,0)
sum a = (1.6653345369377348e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031119901410786854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9358.506898804404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3702706191226892, dt = 0.0031119901410786854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.003081050139035935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8929.136635290626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.373382609263768, dt = 0.003081050139035935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.003050275929947616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8979.897246090944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.376463659402804, dt = 0.003050275929947616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 262.71 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030196823184391692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8865.184168287162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3795139353327515, dt = 0.0030196823184391692 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.71445146547012e-17,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029892834903249717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9181.36569985381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3825336176511906, dt = 0.0029892834903249717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,9.71445146547012e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.002959092991947835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8516.868109781786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3855229011415156, dt = 0.002959092991947835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029291237138778037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8642.11268613269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3884819941334634, dt = 0.0029291237138778037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,8.326672684688674e-17,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.002899387878785166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8645.300044239737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3914111178473412, dt = 0.002899387878785166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.002869897033278834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8711.746701420796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3943105057261262, dt = 0.002869897033278834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028406620434821036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8521.521754747382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.397180402759405, dt = 0.0028406620434821036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,6.938893903907228e-17,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028116930941027747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8224.638049496834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4000210648028872, dt = 0.0028116930941027747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,6.938893903907228e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027829996907440704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8345.800085889521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.40283275789699, dt = 0.0027829996907440704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,7.632783294297951e-17,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027545906651958016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8379.906962411907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.405615757587734, dt = 0.0027545906651958016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.0408340855860843e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.002726474183442162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8306.056746139207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4083703482529297, dt = 0.002726474183442162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,9.71445146547012e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026986577561224816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8181.242876866589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4110968224363718, dt = 0.0026986577561224816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026711482511842474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8047.640480912498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4137954801924943, dt = 0.0026711482511842474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,8.326672684688674e-17,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026439519084732843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7944.703209036554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4164666284436787, dt = 0.0026439519084732843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.5%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 518.16 us (98.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,9.020562075079397e-17,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026170743560135885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.472e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6465.093112988239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.419110580352152, dt = 0.0026170743560135885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,8.326672684688674e-17,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025905206277389353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.301e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7243.766819066221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4217276547081656, dt = 0.0025905206277389353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025642951824493844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7544.900497439559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4243181753359047, dt = 0.0025642951824493844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.0408340855860843e-16,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.002538401923777971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7743.872494497339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.426882470518354, dt = 0.002538401923777971 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.0408340855860843e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025128442209660286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7349.024117787643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.429420872442132, dt = 0.0025128442209660286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.0408340855860843e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024876249302591778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7541.033772432609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.431933716663098, dt = 0.0024876249302591778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.71445146547012e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024627464167500867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7456.623654613748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4344213415933573, dt = 0.0024627464167500867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.002438210576508255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7212.160365070697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4368840880101075, dt = 0.002438210576508255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024140188588511226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7177.564178921297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4393222985866156, dt = 0.0024140188588511226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023901722886247273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7290.856710804351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4417363174454667, dt = 0.0023901722886247273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023666714883756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7024.644273661375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4441264897340915, dt = 0.0023666714883756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002343516700308604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6923.747396003541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4464931612224672, dt = 0.002343516700308604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.1102230246251565e-16,0)
sum a = (1.1102230246251565e-16,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023207078079379422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6802.287990265792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4488366779227757, dt = 0.0023207078079379422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022982443573502996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6977.776903333639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4511573857307136, dt = 0.0022982443573502996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.1796119636642288e-16,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.00227612557801032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6818.8843484812905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4534556300880639, dt = 0.00227612557801032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.249000902703301e-16,0)
sum a = (1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022543504030489558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6762.861513122585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4557317556660743, dt = 0.0022543504030489558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 280.43 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.249000902703301e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002232917488984996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6411.614584721803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4579861060691233, dt = 0.002232917488984996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022118252348389475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6714.823277332069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4602190235581083, dt = 0.0022118252348389475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4051260155412137e-16,1.3183898417423734e-16,0)
sum a = (1.3877787807814457e-16,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002191071800606712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6390.306278872661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4624308487929472, dt = 0.002191071800606712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.1796119636642288e-16,0)
sum a = (5.551115123125783e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002170655125067951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6396.745193786549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4646219205935538, dt = 0.002170655125067951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.474514954580286e-16,1.3183898417423734e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021505729429107936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6492.002467615933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4667925757186218, dt = 0.0021505729429107936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021308228011607017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6362.8771564356475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4689431486615325, dt = 0.0021308228011607017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 258.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021114020749066734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6077.993043415772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4710739714626933, dt = 0.0021114020749066734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020923079823228796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6394.194425421179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4731853735376, dt = 0.0020923079823228796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.474514954580286e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020735375989880535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6137.2803611512445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.475277681519923, dt = 0.0020735375989880535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.474514954580286e-16,1.0408340855860843e-16,0)
sum a = (0,4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00205508787150869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6165.009548346035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4773512191189109, dt = 0.00205508787150869 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,9.71445146547012e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020369556304553416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6125.818448566012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4794063069904195, dt = 0.0020369556304553416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.0408340855860843e-16,0)
sum a = (0,8.673617379884035e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002019137602624056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5967.949422569051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.481443262620875, dt = 0.002019137602624056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.0408340855860843e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020016304226373387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5937.291505235413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4834624002234988, dt = 0.0020016304226373387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001984430643901007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5986.482833199925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4854640306461362, dt = 0.001984430643901007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 242.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001967534748934845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5948.458808920772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4874484612900372, dt = 0.001967534748934845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,9.020562075079397e-17,0)
sum a = (2.7755575615628914e-17,-5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019509391590963486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5964.485786843032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.489415996038972, dt = 0.0019509391590963486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019346402437177535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5804.581405806791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4913669351980683, dt = 0.0019346402437177535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4051260155412137e-16,8.326672684688674e-17,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001918634328677355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5763.108319073686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.493301575441786, dt = 0.001918634328677355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (17.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,8.326672684688674e-17,0)
sum a = (8.326672684688674e-17,-7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001902917704426626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5627.392108253255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4952202097704634, dt = 0.001902917704426626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2923689896027213e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,2.3418766925686896e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001887486633494954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5572.33311148878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.49712312747489, dt = 0.001887486633494954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1622647289044608e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.001872337357493976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5681.654423010599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.499010614108385, dt = 0.001872337357493976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1622647289044608e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,2.3418766925686896e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001857466103643493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.303e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.428835447668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.500882951465879, dt = 0.001857466103643493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.196959198423997e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,-5.46979996018937e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.00184286909084078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5595.039571061374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5027404175695225, dt = 0.00184286909084078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.73 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,7.632783294297951e-17,0)
sum a = (5.551115123125783e-17,8.023096076392733e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001828542535294873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5234.564344730985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5045832866603632, dt = 0.001828542535294873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,9.020562075079397e-17,0)
sum a = (0,6.982261990806649e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018144826557470759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5468.901880965333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.506411829195658, dt = 0.0018144826557470759 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,-9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018006856782984838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5363.725132685741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5082263118514052, dt = 0.0018006856782984838 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3791051634015616e-16,8.326672684688674e-17,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017871478408648315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5475.876412161734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5100269975297036, dt = 0.0017871478408648315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.51 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3834419720915037e-16,8.326672684688674e-17,0)
sum a = (0,1.3704315460216776e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017738653972784238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5169.583063176471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5118141453705685, dt = 0.0017738653972784238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3834419720915037e-16,7.632783294297951e-17,0)
sum a = (8.326672684688674e-17,8.673617379884035e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017608346210563279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5113.09278969291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.513588010767847, dt = 0.0017608346210563279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3834419720915037e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,1.1275702593849246e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017480518088533383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5037.949213473925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5153488453889032, dt = 0.0017480518088533383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4181364416110398e-16,8.326672684688674e-17,0)
sum a = (8.326672684688674e-17,-5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001735513283617642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5197.838355282485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5170968971977565, dt = 0.001735513283617642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2576745200831851e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,1.491862189340054e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.001723215397466364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5188.03154830435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5188324104813742, dt = 0.001723215397466364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4051260155412137e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.001711154534297564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5024.651498976948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5205556258788406, dt = 0.001711154534297564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.371515748194163e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,6.591949208711867e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001699327112154526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5148.927548630411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5222667804131382, dt = 0.001699327112154526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.32164244825983e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,1.0755285551056204e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016877295853575103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5077.287160213075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5239661075252928, dt = 0.0016877295853575103 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,7.632783294297951e-17,0)
sum a = (0,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016763584464174887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5048.761918889304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5256538371106503, dt = 0.0016763584464174887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5764299587939234e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001665210227745645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5019.045613102283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5273301955570677, dt = 0.001665210227745645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5406512871019018e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016542815031718454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4890.600952285803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5289954057848134, dt = 0.0016542815031718454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.702197410802242e-16,7.632783294297951e-17,0)
sum a = (2.7755575615628914e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001643568889284568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4725.745958532687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5306496872879853, dt = 0.001643568889284568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6761765586625899e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016330690466041975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4816.256362492995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.53229325617727, dt = 0.0016330690466041975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.08 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.454999315475547e-16,7.632783294297951e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016227786806009444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4824.994700490137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5339263252238742, dt = 0.0016227786806009444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5829351718288365e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,-9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016126945425680868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4765.554935726551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.535549103904475, dt = 0.0016126945425680868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.8%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 298.11 us (97.2%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3747683547116196e-16,9.71445146547012e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.001602813430360625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.496e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881.742068959713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5371617984470431, dt = 0.001602813430360625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.74 us (96.9%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3574211199518516e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015931321890089104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4465.407673596214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5387646118774039, dt = 0.0015931321890089104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3921155894713877e-16,1.1796119636642288e-16,0)
sum a = (0,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015836477112162683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4718.364521935495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5403577440664127, dt = 0.0015836477112162683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,1.1796119636642288e-16,0)
sum a = (0,1.734723475976807e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015743569377491182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4464.731519585759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.541941391777629, dt = 0.0015743569377491182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1622647289044608e-16,1.1796119636642288e-16,0)
sum a = (-5.551115123125783e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015652568577276143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4595.376780946795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.543515748715378, dt = 0.0015652568577276143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3270634591222574e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015563445088243475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4528.644713887422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5450810055731057, dt = 0.0015563445088243475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.196959198423997e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-1.457167719820518e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015476169773782137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4716.70764903567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.54663735008193, dt = 0.0015476169773782137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 275.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1882855810441129e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001539071398430119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.328e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4195.975992307258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5481849670593082, dt = 0.001539071398430119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2576745200831851e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015307049556867896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4555.064140973556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5497240384577382, dt = 0.0015307049556867896 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.240327285323417e-16,1.1102230246251565e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001522514881418549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4531.233962742619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.551254743413425, dt = 0.001522514881418549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,1.1102230246251565e-16,0)
sum a = (2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015144984562966033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4480.342249604184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5527772582948436, dt = 0.0015144984562966033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2576745200831851e-16,1.1102230246251565e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.001506653009174958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4410.839374695833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5542917567511403, dt = 0.001506653009174958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,1.1796119636642288e-16,0)
sum a = (0,1.457167719820518e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001498975916821816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4453.172571878132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5557984097603152, dt = 0.001498975916821816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3270634591222574e-16,1.1796119636642288e-16,0)
sum a = (2.7755575615628914e-17,1.3183898417423734e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.00149146460360498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4442.7996414998415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.557297385677137, dt = 0.00149146460360498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1796119636642288e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014841165411354548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4326.081322798336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.558788850280742, dt = 0.0014841165411354548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3791051634015616e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001476929247873212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4278.451944136919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5602729668218775, dt = 0.001476929247873212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014699002886987757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4301.979313022229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5617498960697507, dt = 0.0014699002886987757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1102230246251565e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014630272744540584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4413.411809859784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5632197963584495, dt = 0.0014630272744540584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014563078614556481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.279e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4117.723823400108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5646828236329036, dt = 0.0014563078614556481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014497397509834872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4363.265882938734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5661391314943591, dt = 0.0014497397509834872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 262.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014433206887477371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4121.193610482466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5675888712453425, dt = 0.0014433206887477371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001437048464336355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4231.0093354112805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5690321919340902, dt = 0.001437048464336355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 278.60 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.231653667943533e-16,1.1796119636642288e-16,0)
sum a = (2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014309209106457904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4019.8253034160816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5704692403984266, dt = 0.0014309209106457904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.1796119636642288e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014249359032969834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4254.493562344086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5719001613090724, dt = 0.0014249359032969834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.1796119636642288e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.001419091360038722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4313.623128677164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5733250972123694, dt = 0.001419091360038722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.249000902703301e-16,0)
sum a = (0,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014133852401402391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4334.084899752021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.574744188572408, dt = 0.0014133852401402391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001407815543774787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4213.620445664147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5761575738125484, dt = 0.001407815543774787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 226.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.001402380311395822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4247.37350205259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5775653893563233, dt = 0.001402380311395822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,1.249000902703301e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.001397077623107255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4027.182909873988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5789677696677191, dt = 0.001397077623107255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001391905598029164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4074.211334273105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5803648472908263, dt = 0.001391905598029164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013868623936602023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4179.300544304233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5817567528888554, dt = 0.0013868623936602023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,1.1796119636642288e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013819462052378658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4101.134402591045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5831436152825156, dt = 0.0013819462052378658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,1.1796119636642288e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013771552650976816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4108.475455178296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5845255614877534, dt = 0.0013771552650976816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.59 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013724878420322754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3917.3344982807716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.585902716752851, dt = 0.0013724878420322754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001367942240651205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4173.693613302038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5872752045948832, dt = 0.001367942240651205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 440.00 ns (0.2%)
LB compute : 277.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,1.1796119636642288e-16,0)
sum a = (-5.551115123125783e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013635168007423697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.274e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3865.85135558914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5886431468355344, dt = 0.0013635168007423697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,1.1796119636642288e-16,0)
sum a = (0,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013592098966357213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4090.33565960498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5900066636362769, dt = 0.0013592098966357213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1102230246251565e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013550199365699397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3835.6843126744416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5913658735329126, dt = 0.0013550199365699397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1102230246251565e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013509453620626811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4083.254109479307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5927208934694825, dt = 0.0013509453620626811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 263.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013469846472849347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3827.9925630119324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5940718388315451, dt = 0.0013469846472849347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.0408340855860843e-16,0)
sum a = (-1.1102230246251565e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013431362984399745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4030.4110582615685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.59541882347883, dt = 0.0013431362984399745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 233.46 us (88.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,1.1796119636642288e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013393988531473404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3939.830287353137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.59676195977727, dt = 0.0013393988531473404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.001335770879832246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898.253787490581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5981013586304174, dt = 0.001335770879832246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.1102230246251565e-16,0)
sum a = (-1.1102230246251565e-16,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.00133225097712074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3958.2631618165606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5994371295102496, dt = 0.00133225097712074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013288377732409453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4052.3614615178994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6007693804873704, dt = 0.0013288377732409453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013255299254306184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3796.362988534608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6020982182606114, dt = 0.0013255299254306184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013223261193512814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3948.1336033457405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.603423748186042, dt = 0.0013223261193512814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,9.020562075079397e-17,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013192250685091095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3916.4818520415224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6047460743053934, dt = 0.0013192250685091095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 238.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,9.71445146547012e-17,0)
sum a = (-1.1102230246251565e-16,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013162255136827436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3878.4925480811285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6060652993739024, dt = 0.0013162255136827436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013133262223581775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3861.588075965029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6073815248875851, dt = 0.0013133262223581775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013105259881708217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3972.1030504954138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6086948511099433, dt = 0.0013105259881708217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013078236303548422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3852.2567870530534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.610005377098114, dt = 0.0013078236303548422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013052179931998412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3932.587940773887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6113132007284687, dt = 0.0013052179931998412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.17 us (96.2%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,9.020562075079397e-17,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013027079455149321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947.4805414650855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6126184187216686, dt = 0.0013027079455149321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,8.326672684688674e-17,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013002923801002314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3811.130563698665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6139211266671836, dt = 0.0013002923801002314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.001297970213225792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3803.5691625585705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6152214190472838, dt = 0.001297970213225792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 276.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0755285551056204e-16,1.0408340855860843e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012957403841179673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.318e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3544.4755626080278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6165193892605096, dt = 0.0012957403841179673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012936018544531937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3874.7863172640814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6178151296446277, dt = 0.0012936018544531937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.0408340855860843e-16,0)
sum a = (-1.3877787807814457e-16,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012915536078591707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3683.3678387813056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6191087314990809, dt = 0.0012915536078591707 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.0408340855860843e-16,0)
sum a = (-2.220446049250313e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012895946494233825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3877.016110864862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6204002851069401, dt = 0.0012895946494233825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 259.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0755285551056204e-16,1.0408340855860843e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012877240052089221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3772.7057095340147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6216898797563635, dt = 0.0012877240052089221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012859407217775596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3827.5945245213397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6229776037615724, dt = 0.0012859407217775596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,1.0408340855860843e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012842438657199716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3809.279250089044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.62426354448335, dt = 0.0012842438657199716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0755285551056204e-16,1.0408340855860843e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012826325231930682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3816.3364683731957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6255477883490699, dt = 0.0012826325231930682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012811057994643281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3796.7271790239097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.626830420872263, dt = 0.0012811057994643281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,9.020562075079397e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012796628184630495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3739.256992343557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6281115266717274, dt = 0.0012796628184630495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.4%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001278302722338428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3767.7620535681535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6293911894901905, dt = 0.001278302722338428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012770246710243468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3789.8749775940228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6306694922125289, dt = 0.0012770246710243468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012758278418107843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3750.347777169468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6319465168835532, dt = 0.0012758278418107843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001274711428921736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3752.4746835700234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.633222344725364, dt = 0.001274711428921736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 251.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,8.326672684688674e-17,0)
sum a = (-1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012736746430995146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3622.834506443434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6344970561542858, dt = 0.0012736746430995146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012727167111953389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3696.009488362586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6357707307973852, dt = 0.0012727167111953389 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012718368757660787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3753.9543853020305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6370434475085807, dt = 0.0012718368757660787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012710343946770338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.339e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3418.834640120519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6383152843843467, dt = 0.0012710343946770338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.00127030854071064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3812.6774350508535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6395863187790238, dt = 0.00127030854071064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012696586011809615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3728.3671456370307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6408566273197345, dt = 0.0012696586011809615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012690838775538589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3799.7045245030968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6421262859209154, dt = 0.0012690838775538589 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012685836850727084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3557.2094516244724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6433953697984691, dt = 0.0012685836850727084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012681573523895288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3744.1903259424216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6446639534835419, dt = 0.0012681573523895288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,8.326672684688674e-17,0)
sum a = (-2.220446049250313e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012678042212014248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3601.043129068934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6459321108359315, dt = 0.0012678042212014248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012675236458921867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3801.8792389778864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6471999150571328, dt = 0.0012675236458921867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012673149931789489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3638.4669806804213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.648467438703025, dt = 0.0012673149931789489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001267177641763767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3724.263059226481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.649734753696204, dt = 0.001267177641763767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.0408340855860843e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001267110981990003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3793.859843757302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6510019313379678, dt = 0.001267110981990003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 249.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012671144155033843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3704.8193154530286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6522690423199577, dt = 0.0012671144155033843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012671873549176236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3785.312448291637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6535361567354612, dt = 0.0012671873549176236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012673292234844837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3749.124312699251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6548033440903789, dt = 0.0012673292234844837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,9.020562075079397e-17,0)
sum a = (-8.326672684688674e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.00126753945476815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3633.6989593175895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6560706733138633, dt = 0.00126753945476815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,7.632783294297951e-17,0)
sum a = (-1.6653345369377348e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012678174923238298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3689.889175097573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6573382127686314, dt = 0.0012678174923238298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012681627893804147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3769.7353358385267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.658606030260955, dt = 0.0012681627893804147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,8.326672684688674e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001268574808527142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3687.311746361454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6598741930503356, dt = 0.001268574808527142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012690530214041068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3773.2992077230588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6611427678588626, dt = 0.0012690530214041068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,6.938893903907228e-17,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012695969083965386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3694.6238990990137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6624118208802667, dt = 0.0012695969083965386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,8.326672684688674e-17,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012702059583327152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3823.466463967143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6636814177886632, dt = 0.0012702059583327152 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,7.632783294297951e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012708796681854349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3737.2860930424963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.664951623746996, dt = 0.0012708796681854349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,6.245004513516506e-17,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001271617542776911 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3832.276226654386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6662225034151814, dt = 0.001271617542776911 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,6.938893903907228e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012724190944870162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3705.752195566427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6674941209579583, dt = 0.0012724190944870162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,6.938893903907228e-17,0)
sum a = (-1.942890293094024e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012732838429647649 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3715.7431797892077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6687665400524454, dt = 0.0012732838429647649 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012742113148429353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3647.0163833089628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6700398238954102, dt = 0.0012742113148429353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,7.632783294297951e-17,0)
sum a = (-1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012752010434557476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3874.016314243387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6713140352102531, dt = 0.0012752010434557476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012762525685594938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3764.122463463997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.672589236253709, dt = 0.0012762525685594938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,5.551115123125783e-17,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001277365436056043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3839.1650422471726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6738654888222684, dt = 0.001277365436056043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,7.632783294297951e-17,0)
sum a = (1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012785391977191303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3719.27519453782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6751428542583244, dt = 0.0012785391977191303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (61.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012797734109233402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3761.986119827075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6764213934560435, dt = 0.0012797734109233402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 238.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,6.938893903907228e-17,0)
sum a = (-8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012810676383757142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3746.659108582917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6777011668669668, dt = 0.0012810676383757142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,7.632783294297951e-17,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012824214478499016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3651.817258947787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6789822345053425, dt = 0.0012824214478499016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012838344119227645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3778.7926212526077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6802646559531924, dt = 0.0012838344119227645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,6.938893903907228e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012853061077133918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3842.224264170322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6815484903651152, dt = 0.0012853061077133918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,6.938893903907228e-17,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001286836116624417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833.092258739382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6828337964728286, dt = 0.001286836116624417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 231.96 us (88.2%)
LB move op cnt : 0
LB apply : 23.84 us (9.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,7.632783294297951e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012884240240856133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3832.629166544279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.684120632589453, dt = 0.0012884240240856133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001290069419299656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3829.0113349151925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6854090566135387, dt = 0.001290069419299656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 278.14 us (96.9%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,8.326672684688674e-17,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001291771894990035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3715.7715047334823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6866991260328383, dt = 0.001291771894990035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.020562075079397e-17,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012935310471510256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3813.9773935385215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6879908979278284, dt = 0.0012935310471510256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,6.938893903907228e-17,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012953464747996813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.283e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3629.074111685837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6892844289749795, dt = 0.0012953464747996813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012972177797297873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3820.890064720505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6905797754497793, dt = 0.0012972177797297873 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012991445662677277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3773.3189136256337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.691876993229509, dt = 0.0012991445662677277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013011264410302179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3933.3815281525567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6931761377957768, dt = 0.0013011264410302179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013031630126838628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3706.440685943611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6944772642368071, dt = 0.0013031630126838628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (-2.498001805406602e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.001305253891706492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3945.1499055730474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.695780427249491, dt = 0.001305253891706492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,7.632783294297951e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.00130739869015025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3794.787027020582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6970856811411974, dt = 0.00130739869015025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,7.632783294297951e-17,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013095970214063834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896.324475930571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6983930798313476, dt = 0.0013095970214063834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013118484999717166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3911.541167669726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.699702676852754, dt = 0.0013118484999717166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013141527412167723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3852.0774027270586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7010145253527256, dt = 0.0013141527412167723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 245.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013165093611555226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3852.988617136558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7023286780939424, dt = 0.0013165093611555226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,7.632783294297951e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.00131891797621674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3923.70357444079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.703645187455098, dt = 0.00131891797621674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001321378203016934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3769.611562623763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7049641054313147, dt = 0.001321378203016934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 285.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,9.020562075079397e-17,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013238896581348558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3709.9822734107947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7062854836343317, dt = 0.0013238896581348558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013264519578875592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.892e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.214027502803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7076093732924666, dt = 0.0013264519578875592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.1796119636642288e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.001329064718108013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947.245035300508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7089358252503541, dt = 0.001329064718108013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.1102230246251565e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013317275539242493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3976.8576385119395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7102648899684623, dt = 0.0013317275539242493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.0408340855860843e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013344400795400524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3916.5001732913256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7115966175223865, dt = 0.0013344400795400524 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.71445146547012e-17,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013372019080171865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3871.6549334701704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7129310576019265, dt = 0.0013372019080171865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.020562075079397e-17,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013400126510591693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3937.4987169496367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7142682595099437, dt = 0.0013400126510591693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.001342871918796593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3867.993572498544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7156082721610029, dt = 0.001342871918796593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,7.632783294297951e-17,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013457793195740004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4050.7565163822383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7169511440797995, dt = 0.0013457793195740004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,7.632783294297951e-17,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013487344597383458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4029.1889241229624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7182969233993735, dt = 0.0013487344597383458 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,6.938893903907228e-17,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013517369434290379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4019.380711930753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7196456578591117, dt = 0.0013517369434290379 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,7.632783294297951e-17,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013547863723695978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947.3687169403047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7209973948025408, dt = 0.0013547863723695978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001357882345660951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.370e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3558.8276494976517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7223521811749103, dt = 0.001357882345660951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001361024459576378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3840.620583590643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7237100635205713, dt = 0.001361024459576378 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 281.68 us (97.0%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013642123073581611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3849.1750492175543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7250710879801476, dt = 0.0013642123073581611 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013674454790159564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4040.939831825989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7264353002875057, dt = 0.0013674454790159564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013707235611269185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4081.2702802844674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7278027457665217, dt = 0.0013707235611269185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001374046136637642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4069.3173802687083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7291734693276486, dt = 0.001374046136637642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013774127846679386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4048.3107168074143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7305475154642862, dt = 0.0013774127846679386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,9.020562075079397e-17,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013808230803165056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3982.8259572396023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7319249282489542, dt = 0.0013808230803165056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,9.71445146547012e-17,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013842765944685406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4120.202977359371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7333057513292707, dt = 0.0013842765944685406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,9.020562075079397e-17,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001387772893605357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4072.8092634029135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7346900279237392, dt = 0.001387772893605357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.0408340855860843e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013913115396160345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4068.5718146816716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7360778008173445, dt = 0.0013913115396160345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013948920896112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4152.807212156258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7374691123569606, dt = 0.0013948920896112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013985140957389734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4140.626899665986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7388640044465717, dt = 0.0013985140957389734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.001402177105003155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4111.56695839745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7402625185423106, dt = 0.001402177105003155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.0408340855860843e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014058806590837231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4160.495433042845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7416646956473139, dt = 0.0014058806590837231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.1102230246251565e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014096242941597189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4117.293247574656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7430705763063976, dt = 0.0014096242941597189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.0408340855860843e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014134075407345812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4223.540662392886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7444802006005573, dt = 0.0014134075407345812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014172299234640254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4074.9037760109777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.745893608141292, dt = 0.0014172299234640254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.020562075079397e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014210909609865387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4154.255177092681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.747310838064756, dt = 0.0014210909609865387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.71445146547012e-17,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014249901657565768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4106.843224537001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7487319290257426, dt = 0.0014249901657565768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,9.71445146547012e-17,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014289270438805483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4319.2791020583445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7501569191914992, dt = 0.0014289270438805483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.0408340855860843e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014329010949556927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4095.5301141367445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7515858462353797, dt = 0.0014329010949556927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.1796119636642288e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001436911811911915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 2.2% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4198.820346849441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7530187473303354, dt = 0.001436911811911915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 262.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.1102230246251565e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014409586808567043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4178.101600430091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7544556591422473, dt = 0.0014409586808567043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.0408340855860843e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014450411809232165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4293.792752989862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7558966178231041, dt = 0.0014450411809232165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.1102230246251565e-16,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014491587841216262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4204.323534023241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7573416590040274, dt = 0.0014491587841216262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.0408340855860843e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014533109551938558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4272.133714203471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.758790817788149, dt = 0.0014533109551938558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.0408340855860843e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014574971514717814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4314.928164822469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.760244128743343, dt = 0.0014574971514717814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 229.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.1796119636642288e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.001461716822739033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4311.041155281107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7617016258948148, dt = 0.001461716822739033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014659694110964914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4390.162570485069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.763163342717554, dt = 0.0014659694110964914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014702543508316034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4295.19578475666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7646293121286505, dt = 0.0014702543508316034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.249000902703301e-16,0)
sum a = (6.938893903907228e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014745710682916202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4344.555644929128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.766099566479482, dt = 0.0014745710682916202 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.1796119636642288e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001478918981760889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4411.141451737409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7675741375477736, dt = 0.001478918981760889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.1102230246251565e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014832975013423044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4296.213481588308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7690530565295344, dt = 0.0014832975013423044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.1796119636642288e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001487706028843058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4468.533737267548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7705363540308767, dt = 0.001487706028843058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014921439576647847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4431.547007059712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7720240600597197, dt = 0.0014921439576647847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 279.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.2836953722228372e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014966106726982552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4459.478422524722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7735162040173844, dt = 0.0014966106726982552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015011055502227237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4588.621208870745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7750128146900828, dt = 0.0015011055502227237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3530843112619095e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015056279578100668 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4344.754823388604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7765139202403055, dt = 0.0015056279578100668 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.3530843112619095e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015101772542338362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4379.5733014950765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7780195481981156, dt = 0.0015101772542338362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 277.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3530843112619095e-16,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015147527893833595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.282e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4240.694433799431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7795297254523494, dt = 0.0015147527893833595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3530843112619095e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015193539041830138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4484.233170304576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7810444782417327, dt = 0.0015193539041830138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3530843112619095e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001523979930516816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4259.210648084019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7825638321459158, dt = 0.001523979930516816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.23 us (96.3%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3530843112619095e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015286301911584383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4373.548349184203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7840878120764327, dt = 0.0015286301911584383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.3877787807814457e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001533303999706805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4592.588097784584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.785616442267591, dt = 0.001533303999706805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3877787807814457e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015380006605273916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4393.672989016003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7871497462672978, dt = 0.0015380006605273916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.457167719820518e-16,0)
sum a = (-9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015427194686993546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4613.452211860261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7886877469278253, dt = 0.0015427194686993546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.5265566588595902e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015474597099686314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4527.637311715786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7902304663965247, dt = 0.0015474597099686314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015522206607071405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4679.6014598511265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7917779261064934, dt = 0.0015522206607071405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.5265566588595902e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001557001587878217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4638.490694824446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7933301467672005, dt = 0.001557001587878217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5612511283791264e-16,0)
sum a = (1.3877787807814457e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015618017490083966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4694.312022827991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7948871483550788, dt = 0.0015618017490083966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015666203921657056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4635.24035824805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7964489501040872, dt = 0.0015666203921657056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001571456755944564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4604.438035248291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7980155704962528, dt = 0.001571456755944564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 253.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.6306400674181987e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015763100694574379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4626.2933528837075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7995870272521974, dt = 0.0015763100694574379 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 242.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015811795523333599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4686.927526191758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.801163337321655, dt = 0.0015811795523333599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.6653345369377348e-16,0)
sum a = (-4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015860644147234586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4523.824062014791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8027445168739882, dt = 0.0015860644147234586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.700029006457271e-16,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.001590963857313596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4618.555080118881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8043305812887116, dt = 0.001590963857313596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.700029006457271e-16,0)
sum a = (4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015958770713442542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4583.127190613438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.805921545146025, dt = 0.0015958770713442542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.8%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.17 us (95.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.7694179454963432e-16,0)
sum a = (-6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016008032386377682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4773.354905070846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8075174222173693, dt = 0.0016008032386377682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.700029006457271e-16,0)
sum a = (4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016057415316330444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4645.21187505166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8091182254560072, dt = 0.0016057415316330444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.7694179454963432e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016106911134278565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4701.3442936348565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8107239669876403, dt = 0.0016106911134278565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.700029006457271e-16,0)
sum a = (-7.632783294297951e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016156511378288326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4585.151470707304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8123346581010682, dt = 0.0016156511378288326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.700029006457271e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016206207494092455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4819.059093102589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.813950309238897, dt = 0.0016206207494092455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6306400674181987e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001625599083574705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4895.773640309614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8155709299883063, dt = 0.001625599083574705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (-9.020562075079397e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016305852666368456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4767.680926584354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.817196529071881, dt = 0.0016305852666368456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5265566588595902e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016355784158951117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4857.1124453937655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.818827114338518, dt = 0.0016355784158951117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.5%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 565.20 us (98.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5612511283791264e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016405776397267248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.571e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3747.6162726393477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.820462692754413, dt = 0.0016405776397267248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.491862189340054e-16,0)
sum a = (-3.469446951953614e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016455820376849203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4905.463133121985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8221032703941398, dt = 0.0016455820376849203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.001650590700605531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4795.211451066976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8237488524318246, dt = 0.001650590700605531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016556027107220012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4837.029695718002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.82539944313243, dt = 0.0016556027107220012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 256.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5612511283791264e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001660617141788886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4742.2280665064245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.827055045843152, dt = 0.001660617141788886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5959455978986625e-16,0)
sum a = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016656330592139275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4967.615068516135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8287156629849408, dt = 0.0016656330592139275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6653345369377348e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016706495201987278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4967.396979083509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8303812960441548, dt = 0.0016706495201987278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 262.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.700029006457271e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016756655738881117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4766.256007185769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8320519455643536, dt = 0.0016756655738881117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.700029006457271e-16,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016806802615281966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5055.6030086884975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8337276111382417, dt = 0.0016806802615281966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016856926166332262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4701.623642750912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8354082913997698, dt = 0.0016856926166332262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7694179454963432e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001690701665161193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5141.283504904167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8370939840164031, dt = 0.001690701665161193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (-2.0816681711721685e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016957064256982839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.278e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.39829690533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8387846856815644, dt = 0.0016957064256982839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017007059096521497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5117.354312155839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8404803921072628, dt = 0.0017007059096521497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.734723475976807e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017056991214540438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4867.852335319212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8421810980169149, dt = 0.0017056991214540438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.7694179454963432e-16,0)
sum a = (-3.469446951953614e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017106850587697991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5015.090425115286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.843886797138369, dt = 0.0017106850587697991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017156627127196586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5154.593636987123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8455974821971388, dt = 0.0017156627127196586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017206310681069494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5057.918198680217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8473131449098585, dt = 0.0017206310681069494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.734723475976807e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.001725589103655566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5083.155131336446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8490337759779656, dt = 0.001725589103655566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.700029006457271e-16,0)
sum a = (-4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017305357922562583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5017.122473848828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8507593650816212, dt = 0.0017305357922562583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.734723475976807e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017354701012216585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5112.4999607100535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8524899008738775, dt = 0.0017354701012216585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.700029006457271e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001740390992550029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5031.843087356849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.854225370975099, dt = 0.001740390992550029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6653345369377348e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001745297423197655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5108.688178441111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.855965761967649, dt = 0.001745297423197655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 291.05 us (97.1%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6306400674181987e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017501883453598331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.284e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4894.199643016093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8577110593908468, dt = 0.0017501883453598331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017550627067603828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5294.669634131817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8594612477362067, dt = 0.0017550627067603828 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017599194509495839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5095.026957469075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.861216310442967, dt = 0.0017599194509495839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6306400674181987e-16,0)
sum a = (-1.0408340855860843e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017647575176104626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5127.227604310194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8629762298939168, dt = 0.0017647575176104626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6306400674181987e-16,0)
sum a = (-1.0408340855860843e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017695758428733315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5100.504391016664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8647409874115273, dt = 0.0017695758428733315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6306400674181987e-16,0)
sum a = (-3.469446951953614e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017743733596384526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5218.739071234999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8665105632544006, dt = 0.0017743733596384526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6306400674181987e-16,0)
sum a = (-1.0408340855860843e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001779148997906714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5290.026554461737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.868284936614039, dt = 0.001779148997906714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6306400674181987e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017839016851182005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5280.3880010455105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8700640856119457, dt = 0.0017839016851182005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 274.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6653345369377348e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017886303464984927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5181.593345811607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.871847987297064, dt = 0.0017886303464984927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6306400674181987e-16,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017933339054125776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5410.141488419509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8736366176435624, dt = 0.0017933339054125776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6479873021779667e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017980112837261773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5207.641792026147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.875429951548975, dt = 0.0017980112837261773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 227.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6653345369377348e-16,0)
sum a = (3.469446951953614e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018026614021743484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5127.168978488995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.877227962832701, dt = 0.0018026614021743484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6653345369377348e-16,0)
sum a = (3.469446951953614e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018072831807371768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5226.700456763903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8790306242348755, dt = 0.0018072831807371768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018118755390223447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5421.293859590922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8808379074156127, dt = 0.0018118755390223447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018164373966544167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5418.603172101349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8826497829546351, dt = 0.0018164373966544167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6479873021779667e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018209676736705982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5329.822021753879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8844662203512896, dt = 0.0018209676736705982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6653345369377348e-16,0)
sum a = (3.469446951953614e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018254652909227675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5443.619000701809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8862871880249603, dt = 0.0018254652909227675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.700029006457271e-16,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018299291704855446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5445.921404243722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8881126533158832, dt = 0.0018299291704855446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6653345369377348e-16,0)
sum a = (3.469446951953614e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001834358236070158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5339.10463100801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8899425824863687, dt = 0.001834358236070158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 241.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018387514134438725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5416.954165240098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.891776940722439, dt = 0.0018387514134438725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018431076308547002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5428.765165715146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8936156921358829, dt = 0.0018431076308547002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.700029006457271e-16,0)
sum a = (-1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018474258194611482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5622.3445837014415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8954587997667376, dt = 0.0018474258194611482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.700029006457271e-16,0)
sum a = (1.734723475976807e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018517049137667177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5426.73326266585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8973062255861988, dt = 0.0018517049137667177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.700029006457271e-16,0)
sum a = (-1.734723475976807e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018559438520588715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5262.198828668037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8991579304999655, dt = 0.0018559438520588715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.700029006457271e-16,0)
sum a = (-1.734723475976807e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018601415768521735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5474.666420368001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9010138743520244, dt = 0.0018601415768521735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 432.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018642970353353104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5320.001776907281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9028740159288766, dt = 0.0018642970353353104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.717376241217039e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018684091798216685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5474.500471231817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.904738312964212, dt = 0.0018684091798216685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (1.734723475976807e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018724769682031631 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5308.617390468243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9066067221440335, dt = 0.0018724769682031631 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.682681771697503e-16,0)
sum a = (-1.734723475976807e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018764993644069842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5600.214910605137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9084791991122367, dt = 0.0018764993644069842 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018804753388549367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5557.473240030161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9103556984766437, dt = 0.0018804753388549367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (6.071532165918825e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018844038689250194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5624.78602457544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9122361738154985, dt = 0.0018844038689250194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (-8.673617379884035e-19,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018882839394149134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5747.436030972832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9141205776844235, dt = 0.0018882839394149134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 245.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.6653345369377348e-16,0)
sum a = (-1.734723475976807e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018921145430070181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5289.841714499579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9160088616238384, dt = 0.0018921145430070181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 250.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (6.071532165918825e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018958946807346641 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5480.449527694873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9179009761668455, dt = 0.0018958946807346641 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.682681771697503e-16,0)
sum a = (-2.168404344971009e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.00189962336244917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5615.515311262089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.91979687084758, dt = 0.00189962336244917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.6653345369377348e-16,0)
sum a = (9.107298248878237e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019032996072873294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5688.739390616054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9216964942100292, dt = 0.0019032996072873294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.39 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6740081543176188e-16,0)
sum a = (-4.336808689942018e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001906922444138992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5618.043805639777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9235997938173166, dt = 0.001906922444138992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.691355389077387e-16,0)
sum a = (-5.421010862427522e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019104909121143362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5537.088271723236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9255067162614556, dt = 0.0019104909121143362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.691355389077387e-16,0)
sum a = (8.158621347953421e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019140040610104523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5582.7256633153565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.92741720717357, dt = 0.0019140040610104523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.682681771697503e-16,0)
sum a = (-4.9873299934333204e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.00191746095177685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5787.808215536791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9293312112345804, dt = 0.00191746095177685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.700029006457271e-16,0)
sum a = (4.7704895589362195e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019208606569795113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5527.576326146184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9312486721863573, dt = 0.0019208606569795113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.691355389077387e-16,0)
sum a = (2.168404344971009e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001924202261263062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5513.359733135052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.933169532843337, dt = 0.001924202261263062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6740081543176188e-16,0)
sum a = (-1.9081958235744878e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001927484861810708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5642.849460446225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9350937351046, dt = 0.001927484861810708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.691355389077387e-16,0)
sum a = (3.2959746043559335e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019307075688015012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.447e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4796.190045438399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9370212199664107, dt = 0.0019307075688015012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.708702623837155e-16,0)
sum a = (-6.071532165918825e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019338695058645587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5452.983486751787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9389519275352123, dt = 0.0019338695058645587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.726049858596923e-16,0)
sum a = (7.806255641895632e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019369698105298266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5753.794485419837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9408857970410769, dt = 0.0019369698105298266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.708702623837155e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019400076346749787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5653.896027330488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9428227668516067, dt = 0.0019400076346749787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 267.62 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.717376241217039e-16,0)
sum a = (1.734723475976807e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019429821449680734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5609.088458309812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9447627744862817, dt = 0.0019429821449680734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.708702623837155e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001945892523305535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5611.775403276907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9467057566312498, dt = 0.001945892523305535 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.708702623837155e-16,0)
sum a = (2.6020852139652106e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019487379672450992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5511.1640624028305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9486516491545554, dt = 0.0019487379672450992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.695692197767329e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019515176904332876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5758.7433886150575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9506003871218005, dt = 0.0019515176904332876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.20 us (8.6%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.84 us (89.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.708702623837155e-16,0)
sum a = (-1.734723475976807e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019542309230270445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5761.6984985798335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9525519048122337, dt = 0.0019542309230270445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.708702623837155e-16,0)
sum a = (1.0408340855860843e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019568769121091245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5914.180640036518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9545061357352607, dt = 0.0019568769121091245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.687018580387445e-16,0)
sum a = (1.0408340855860843e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001959454922096862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5842.3731249795555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9564630126473699, dt = 0.001959454922096862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.691355389077387e-16,0)
sum a = (1.214306433183765e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001961964235143916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5812.829952599982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9584224675694668, dt = 0.001961964235143916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.682681771697503e-16,0)
sum a = (1.214306433183765e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.00196440415153462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5686.9398537643465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9603844318046106, dt = 0.00196440415153462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.6718397499726478e-16,0)
sum a = (2.6020852139652106e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019667739900705657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5972.426741282401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9623488359561452, dt = 0.0019667739900705657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6501557065229377e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001969073088449042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5773.629297982957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9643156099462158, dt = 0.001969073088449042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6544925152128798e-16,0)
sum a = (1.734723475976807e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019713008036329636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5798.189150201871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9662846830346647, dt = 0.0019713008036329636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6642503347652493e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001973456512211945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5791.177703400985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9682559838382978, dt = 0.001973456512211945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.639584735341204e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001975539610754146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5856.301597162872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9702294403505098, dt = 0.001975539610754146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.641956427593516e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019775495161485695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5949.952562896597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.972204979961264, dt = 0.0019775495161485695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6506978076091805e-16,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019794856659374567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5843.309219897821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9741825294774125, dt = 0.0019794856659374567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 251.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6067876196235176e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001981347518638464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5761.520697201317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9761620151433499, dt = 0.001981347518638464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6338926739356552e-16,0)
sum a = (-3.122502256758253e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001983134554056306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5886.822639855991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9781433626619884, dt = 0.001983134554056306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6436504934880247e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019848462735835375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5937.933553854056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9801264972160448, dt = 0.0019848462735835375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6609977282477928e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019864822004901977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5953.382872242919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9821113434896285, dt = 0.0019864822004901977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.682681771697503e-16,0)
sum a = (3.8163916471489756e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019880418802020188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5896.759137869096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9840978256901187, dt = 0.0019880418802020188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 274.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.713039432527097e-16,0)
sum a = (-3.469446951953614e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001989524880566921 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5710.19789855554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9860858675703208, dt = 0.001989524880566921 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.717376241217039e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.00199093079210952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5644.8384524223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9880753924508878, dt = 0.00199093079210952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (1.0408340855860843e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.00199225922827342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5790.147013897669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9900663232429974, dt = 0.00199225922827342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.7694179454963432e-16,0)
sum a = (3.122502256758253e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001993509825651009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5816.886030068745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9920585824712709, dt = 0.001993509825651009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.7564075194265172e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019946822442005628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5799.9012199594235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9940520922969218, dt = 0.0019946822442005628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.708702623837155e-16,0)
sum a = (3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001995776167450418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6154.680109744256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9960467745411223, dt = 0.001995776167450418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.691355389077387e-16,0)
sum a = (3.8163916471489756e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019967913026900145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5969.970812214739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9980425507085728, dt = 0.0019967913026900145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.700029006457271e-16,0)
sum a = (-2.0816681711721685e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019977273811476303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5827.141117515636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.000039342011263, dt = 0.0019977273811476303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 247.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-3.469446951953614e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001998584158154593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5896.1414815589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0020370693924106, dt = 0.001998584158154593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.726049858596923e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.00199936141329587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5916.8950556101345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0040356535505652, dt = 0.00199936141329587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7520707107365752e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020000589505468143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5793.608484443323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.006035014963861, dt = 0.0020000589505468143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.717376241217039e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002000676598395974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5967.87077782979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.008035073914408, dt = 0.002000676598395974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6653345369377348e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020012142099538545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5872.047138406674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0100357505128037, dt = 0.0020012142099538545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6740081543176188e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020016716630474897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6022.3822760438525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0120369647227574, dt = 0.0020016716630474897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6653345369377348e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020020488603007627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5982.823698905944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0140386363858047, dt = 0.0020020488603007627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6306400674181987e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002002345729200387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5760.472048807399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0160406852461055, dt = 0.002002345729200387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6046192152785466e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020025622221475025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5889.122237598838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.018043030975306, dt = 0.0020025622221475025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5872719805187785e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020026983164948176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5781.625124090566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0200455931974535, dt = 0.0020026983164948176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6393136847980827e-16,0)
sum a = (6.245004513516506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002002754014569286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5921.853029859597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0220482915139484, dt = 0.002002754014569286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6740081543176188e-16,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.00200272934368032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5829.76908863653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.024051045528518, dt = 0.00200272934368032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.700029006457271e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020026243561134865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6005.265468512949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.026053774872198, dt = 0.0020026243561134865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.700029006457271e-16,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002002439129109779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5715.311058038675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0280563992283116, dt = 0.002002439129109779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 247.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.717376241217039e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002002173764830429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5941.382890699796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.030058838357421, dt = 0.002002173764830429 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 274.47 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7520707107365752e-16,0)
sum a = (2.0816681711721685e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002001828390307353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5575.252298949621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0320610121222518, dt = 0.002001828390307353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002001403157379278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6037.73168958753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.034062840512559, dt = 0.002001403157379278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7520707107365752e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020008982426136194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5846.153831508152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0360642436699385, dt = 0.0020008982426136194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.7867651802561113e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002000313847214216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.991408885778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.038065141912552, dt = 0.002000313847214216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8561541192951836e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001999650196915046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.291e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5577.592941402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.040065455759766, dt = 0.001999650196915046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8908485888147197e-16,0)
sum a = (-2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001998907541859991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5979.020522337346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0420651059566812, dt = 0.001998907541859991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.47 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001998086156468867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5875.160655647416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.044064013498541, dt = 0.001998086156468867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7867651802561113e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001997186339289806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5826.989869381125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.04606209965501, dt = 0.001997186339289806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 231.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7867651802561113e-16,0)
sum a = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019962084128381887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.969662703273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0480592859943, dt = 0.0019962084128381887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7520707107365752e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019951527234223043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5913.372643811528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0500554944071383, dt = 0.0019951527234223043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.717376241217039e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001994019640955928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5945.927661199371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0520506471305606, dt = 0.001994019640955928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.7694179454963432e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001992809558758024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5825.768128403051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0540446667715164, dt = 0.001992809558758024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8561541192951836e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001991522893339793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6033.01235556101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0560374763302747, dt = 0.001991522893339793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 295.31 us (97.1%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.9081958235744878e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001990160084179306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5676.055463121387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0580289992236143, dt = 0.001990160084179306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 230.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.960237527853792e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001988721593483962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5831.467779780906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0600191593077937, dt = 0.001988721593483962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,2.0122792321330962e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019872079059410136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5660.305458102123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0620078809012776, dt = 0.0019872079059410136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,2.0296264668928643e-16,0)
sum a = (2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019856195284564697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.500747916351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0639950888072187, dt = 0.0019856195284564697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,2.0122792321330962e-16,0)
sum a = (2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019839569898826054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5755.367949594078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.065980708335675, dt = 0.0019839569898826054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.97758476261356e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.00198222084073441 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5830.21384083571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0679646653255577, dt = 0.00198222084073441 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,2.0296264668928643e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001980411652895244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5711.702135361572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.069946886166292, dt = 0.001980411652895244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,2.0643209364124004e-16,0)
sum a = (9.71445146547012e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019785300193120364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5894.857169901531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0719272978191876, dt = 0.0019785300193120364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019765765536803427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5812.415290570111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0739058278385, dt = 0.0019765765536803427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,2.1337098754514727e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019745518901195603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5780.163123419934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.07588240439218, dt = 0.0019745518901195603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,2.0469737016526324e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019724566828386893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5854.330638382501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0778569562822997, dt = 0.0019724566828386893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,2.1163626406917047e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019702916057929352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5900.161244885152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0798294129651382, dt = 0.0019702916057929352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,2.0296264668928643e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001968057352331553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5908.639382145893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.081799704570931, dt = 0.001968057352331553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,2.0469737016526324e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019657546348372324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5808.048848551137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0837677619232626, dt = 0.0019657546348372324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.0469737016526324e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001963384184357462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5573.477380647467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0857335165580997, dt = 0.001963384184357462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 233.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019609467502281716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5822.902877259107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0876969007424573, dt = 0.0019609467502281716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.185751579730777e-16,0)
sum a = (-2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001958443099690093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5958.9459216809155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0896578474926852, dt = 0.001958443099690093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.0816681711721685e-16,0)
sum a = (6.938893903907228e-18,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001955874017498175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5840.597214302558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.091616290592375, dt = 0.001955874017498175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.0816681711721685e-16,0)
sum a = (4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001953240305524462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 1.1% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5855.043467445296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0935721646098733, dt = 0.001953240305524462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,2.1163626406917047e-16,0)
sum a = (-2.0816681711721685e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019505427823548194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5780.513431281254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0955254049153975, dt = 0.0019505427823548194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,2.0469737016526324e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019477822828799023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5797.307575085903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0974759476977525, dt = 0.0019477822828799023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 274.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.97758476261356e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019449596578807599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5526.054608174829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.099423729980632, dt = 0.0019449596578807599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.97758476261356e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019420757736094715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5710.243394485313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.101368689638513, dt = 0.0019420757736094715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.00193913151136522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5615.519008819967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.103310765412122, dt = 0.00193913151136522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019361277670662076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5824.869783651346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.105249896923487, dt = 0.0019361277670662076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.9081958235744878e-16,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019330654508177931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5466.443588621383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1071860246905536, dt = 0.0019330654508177931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.9081958235744878e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001929945486477287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5818.47003444247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1091190901413714, dt = 0.001929945486477287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001926768811215776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5515.162960140338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1110490356278486, dt = 0.001926768811215776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019235363750773893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5522.066971715072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1129758044390643, dt = 0.0019235363750773893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019202491405364138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5752.823313155662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1148993408141417, dt = 0.0019202491405364138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.7694179454963432e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019169080820526426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5552.808620782489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.116819589954678, dt = 0.0019169080820526426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.8041124150158794e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001913514185625353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5574.14463438177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1187364980367307, dt = 0.001913514185625353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 246.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019100684483463269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5615.082888210476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.120650012222356, dt = 0.0019100684483463269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.700029006457271e-16,0)
sum a = (6.938893903907228e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019065718779522694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5740.01598903357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.122560080670702, dt = 0.0019065718779522694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.700029006457271e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019030254923770437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.542800952432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.124466652548654, dt = 0.0019030254923770437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018994303193040861 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5611.612127169084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1263696780410313, dt = 0.0018994303193040861 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7694179454963432e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018957873957193834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5640.308585651758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1282691083603353, dt = 0.0018957873957193834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8041124150158794e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001892097767465386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5533.642217718446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.130164895756055, dt = 0.001892097767465386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8388068845354155e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018883624887962292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5404.552407354379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1320569935235203, dt = 0.0018883624887962292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 243.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018845826219346124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5447.4090026430695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1339453560123167, dt = 0.0018845826219346124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8735013540549517e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018807592366307116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5302.289992243002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1358299386342514, dt = 0.0018807592366307116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 244.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8388068845354155e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018768934097234547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5597.169190524169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.137710697870882, dt = 0.0018768934097234547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 274.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.9081958235744878e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018729862247045198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5437.59135997756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1395875912806055, dt = 0.0018729862247045198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018690387712853882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5598.1893914712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.14146057750531, dt = 0.0018690387712853882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.7694179454963432e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018650521449677798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5384.059226805629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1433296162765956, dt = 0.0018650521449677798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001861027446617796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5658.350782559895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1451946684215635, dt = 0.001861027446617796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.66 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001856965782044085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5255.976634034266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1470556958681812, dt = 0.001856965782044085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 223.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018528682615803374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5455.8694322685915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1489126616502254, dt = 0.0018528682615803374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018487359996724139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5424.841749307462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.150765529911806, dt = 0.0018487359996724139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.001844570114470385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5437.201177412091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1526142659114784, dt = 0.001844570114470385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7694179454963432e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018403717274257827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5619.263632211577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.154458836025949, dt = 0.0018403717274257827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.7694179454963432e-16,0)
sum a = (6.938893903907228e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018361419628943282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5421.743657278856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1562992077533747, dt = 0.0018361419628943282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018318819477443952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5488.47983820431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.158135349716269, dt = 0.0018318819477443952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 238.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001827592810971484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5207.962343354881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1599672316640133, dt = 0.001827592810971484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8388068845354155e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018232756833189304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5373.306273110285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1617948244749847, dt = 0.0018232756833189304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (1.1102230246251565e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018189316969051145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5302.3051377182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1636181001583035, dt = 0.0018189316969051145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.7694179454963432e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.001814561984857371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5357.173976314135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1654370318552085, dt = 0.001814561984857371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8735013540549517e-16,0)
sum a = (6.938893903907228e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018101676809528435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5201.064943403893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.167251593840066, dt = 0.0018101676809528435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8388068845354155e-16,0)
sum a = (1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018057499192664843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5485.77219775087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.169061761521019, dt = 0.0018057499192664843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 269.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001801309833826404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5229.914230078056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.170867511440285, dt = 0.001801309833826404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017968485582767534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5300.932385234113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1726688212741117, dt = 0.0017968485582767534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017923672255483437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5254.5790627653205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1744656698323883, dt = 0.0017923672255483437 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017878669675371547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5319.487197391285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1762580370579365, dt = 0.0017878669675371547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (-1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001783348914790907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5143.752628796191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1780459040254736, dt = 0.001783348914790907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (1.249000902703301e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017788141962038584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5197.4243775266505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1798292529402645, dt = 0.0017788141962038584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.3%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017742639387199558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5192.796845862892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1816080671364686, dt = 0.0017742639387199558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017696992670444992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5287.375214514643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1833823310751885, dt = 0.0017696992670444992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8388068845354155e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017651213033644249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5413.993933596938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.185152030342233, dt = 0.0017651213033644249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8735013540549517e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017605311670773466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5390.396602189882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1869171516455976, dt = 0.0017605311670773466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 275.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017559299745294576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5066.568340846513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.188677682812675, dt = 0.0017559299745294576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.97758476261356e-16,0)
sum a = (-9.71445146547012e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.00175131883876238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.323198751659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1904336127872046, dt = 0.00175131883876238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 454.95 us (98.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0469737016526324e-16,0)
sum a = (1.5265566588595902e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017466988692690887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.450e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4347.448328144161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.192184931625967, dt = 0.0017466988692690887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001742071171758962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5228.47631918787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.193931630495236, dt = 0.001742071171758962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0122792321330962e-16,0)
sum a = (6.938893903907228e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017374368479320518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5140.365133903093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.195673701666995, dt = 0.0017374368479320518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0122792321330962e-16,0)
sum a = (4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017327969952626455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5055.497439065411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.197411138514927, dt = 0.0017327969952626455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 220.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.97758476261356e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017281527067921569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5300.9196058307125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1991439355101896, dt = 0.0017281527067921569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.97758476261356e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017235050709314347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5037.864655346966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2008720882169817, dt = 0.0017235050709314347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.9081958235744878e-16,0)
sum a = (6.938893903907228e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017188551712725016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5011.629841389454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.202595593287913, dt = 0.0017188551712725016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.56 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.9081958235744878e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017142040864097836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4879.414755694081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2043144484591854, dt = 0.0017142040864097836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.9081958235744878e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017095528897708393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5180.311979661336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.206028652545595, dt = 0.0017095528897708393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017049026494566392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4987.204913936888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.207738205435366, dt = 0.0017049026494566392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017002544280913911 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.292e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4752.330840922476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2094431080848227, dt = 0.0017002544280913911 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 277.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001695609282681926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4807.6225081894145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.211143362512914, dt = 0.001695609282681926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.34 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.7694179454963432e-16,0)
sum a = (-4.163336342344337e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016909682644866543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.290e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4733.25378993745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.212838971795596, dt = 0.0016909682644866543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.700029006457271e-16,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016863324188940935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4965.399751017311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.214529940060083, dt = 0.0016863324188940935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.6306400674181987e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016817027853109421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4839.274051119572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.216216272478977, dt = 0.0016817027853109421 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016770803970597048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5130.636059036973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.217897975264288, dt = 0.0016770803970597048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.5959455978986625e-16,0)
sum a = (4.163336342344337e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001672466281285844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4837.177654655706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2195750556613474, dt = 0.001672466281285844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.6653345369377348e-16,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.00166786145887443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5060.5229334554615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.221247521942633, dt = 0.00166786145887443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.7694179454963432e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001663266944376266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4737.614688036899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2229153834015074, dt = 0.001663266944376266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.70 us (96.9%)
LB move op cnt : 0
LB apply : 1.42 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016586837459434476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4844.702007989512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2245786503458835, dt = 0.0016586837459434476 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8388068845354155e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016541128652743323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4877.8917952701895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.226237334091827, dt = 0.0016541128652743323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (4.163336342344337e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016495552975678604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4938.493901103834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.227891446957101, dt = 0.0016495552975678604 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.6%)
patch tree reduce : 812.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 245.62 us (95.6%)
LB move op cnt : 0
LB apply : 2.03 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.001645012031487195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4843.556676525742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.229541002254669, dt = 0.001645012031487195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 271.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001640484049132618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4638.279003798553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2311860142861564, dt = 0.001640484049132618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016359723260236515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4860.973534999896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.232826498335289, dt = 0.0016359723260236515 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 297.88 us (97.2%)
LB move op cnt : 0
LB apply : 1.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001631477831090317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4554.041396334301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2344624706613123, dt = 0.001631477831090317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001627001526673499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4861.062300577486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2360939484924027, dt = 0.001627001526673499 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.942890293094024e-16,0)
sum a = (6.938893903907228e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016225443685343448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4792.918722106057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2377209500190762, dt = 0.0016225443685343448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016181073058726247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4785.121657816748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2393434943876107, dt = 0.0016181073058726247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0122792321330962e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016136912813540041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4682.6068232374055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2409616016934835, dt = 0.0016136912813540041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.0816681711721685e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016092972311461447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4745.073106659121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2425752929748373, dt = 0.0016092972311461447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.1510571102112408e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016049260849635698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4802.295458643862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2441845902059834, dt = 0.0016049260849635698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.1510571102112408e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.001600578766121225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4513.635984717031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.245789516290947, dt = 0.001600578766121225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.001596256191596656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4884.508362998316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.247390095057068, dt = 0.001596256191596656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015919592721007306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4563.111312603446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2489863512486648, dt = 0.0015919592721007306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015876889121568271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4643.51067492133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2505783105207655, dt = 0.0015876889121568271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0816681711721685e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001583446010188428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4513.232964682984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2521659994329224, dt = 0.001583446010188428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,2.0816681711721685e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015792314586150172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4691.49881624488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.253749445443111, dt = 0.0015792314586150172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,2.0816681711721685e-16,0)
sum a = (6.938893903907228e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015750461439562255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4597.504955974984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.255328676901726, dt = 0.0015750461439562255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0816681711721685e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001570890946944139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4836.082187314153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.256903723045682, dt = 0.001570890946944139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.36 us (96.6%)
LB move op cnt : 0
LB apply : 2.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001566766742643691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.288e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4389.843732727627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.258474613992626, dt = 0.001566766742643691 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015626744005810714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4461.87968686352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2600413807352697, dt = 0.0015626744005810714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0816681711721685e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015586147848800627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4560.237739875664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2616040551358507, dt = 0.0015586147848800627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,2.0122792321330962e-16,0)
sum a = (1.249000902703301e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001554588754406234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4613.170587894813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.263162669920731, dt = 0.001554588754406234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.0122792321330962e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015505971629189283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4513.4386660481905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.264717258675137, dt = 0.0015505971629189283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (1.2%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 249.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015466408592309457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4550.716287742452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.266267855838056, dt = 0.0015466408592309457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015427206873758672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4497.123903348511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.267814496697287, dt = 0.0015427206873758672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,2.0816681711721685e-16,0)
sum a = (-8.326672684688674e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015388374867829455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4603.704879952852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2693572173846626, dt = 0.0015388374867829455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0816681711721685e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015349920924594826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4445.583480188489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2708960548714456, dt = 0.0015349920924594826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,2.0122792321330962e-16,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015311853351806229 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4558.231612195384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2724310469639053, dt = 0.0015311853351806229 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015274180416865132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4464.35749950616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.273962232299086, dt = 0.0015274180416865132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015236910348867306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4388.66989594922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.275489650340772, dt = 0.0015236910348867306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.942890293094024e-16,0)
sum a = (-1.5265566588595902e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015200051340719424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4510.0632243922255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.277013341375659, dt = 0.0015200051340719424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.22 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001516361155132703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4449.197027259364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.278533346509731, dt = 0.001516361155132703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.942890293094024e-16,0)
sum a = (6.938893903907228e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015127599107853623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4493.436005006112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2800497076648636, dt = 0.0015127599107853623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.942890293094024e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015092022108049742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4310.809112511629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.281562467575649, dt = 0.0015092022108049742 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.8735013540549517e-16,0)
sum a = (6.938893903907228e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015056888622651927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4555.856740754887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.283071669786454, dt = 0.0015056888622651927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001502220669785061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4348.458723507189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2845773586487192, dt = 0.001502220669785061 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014987984357826558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4513.699619345011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2860795793185043, dt = 0.0014987984357826558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014954229607355143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4359.073591530769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.287578377754287, dt = 0.0014954229607355143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001492095043447797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4538.817036445997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2890738007150224, dt = 0.001492095043447797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014888154813241326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4119.767331734015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.29056589575847, dt = 0.0014888154813241326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 266.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014855850706500793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4303.425513158113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.292054711239794, dt = 0.0014855850706500793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8735013540549517e-16,0)
sum a = (-8.326672684688674e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001482404606879155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4302.776759948192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.293540296310444, dt = 0.001482404606879155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.97 us (97.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8735013540549517e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001479274884926384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4208.022791781296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.295022700917323, dt = 0.001479274884926384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014761966994683011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4390.925906987602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2965019758022494, dt = 0.0014761966994683011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001473170845249361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4411.2685173600685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2979781725017174, dt = 0.001473170845249361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014701981173946947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4396.926987455851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2994513433469668, dt = 0.0014701981173946947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 281.32 us (97.0%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8735013540549517e-16,0)
sum a = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014672793117291628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4174.261575958562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3009215414643616, dt = 0.0014672793117291628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014644152251026444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4393.355098717714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3023888207760907, dt = 0.0014644152251026444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014616066557214952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.308e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4029.129852893717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3038532360011934, dt = 0.0014616066557214952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.001458854403486127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4378.963104012868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.305314842656915, dt = 0.001458854403486127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014561592703346297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4269.335296702289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.306773697060401, dt = 0.0014561592703346297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014535220605923793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4422.334474343941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.308229856330736, dt = 0.0014535220605923793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.001450943581327548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4262.896126687841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.309683378391328, dt = 0.001450943581327548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.734723475976807e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014484246427124423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4395.980960426698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3111343219726557, dt = 0.0014484246427124423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014459660583905915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4154.9561611747185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.312582746615368, dt = 0.0014459660583905915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014435686458494862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4354.794778913961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3140287126737586, dt = 0.0014435686458494862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.6653345369377348e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014412332267988756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4180.611532020106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3154722813196082, dt = 0.0014412332267988756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.6653345369377348e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014389606275545075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4344.837313928891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3169135145464073, dt = 0.0014389606275545075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.6653345369377348e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014367516794272109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4269.247750883044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.318352475173962, dt = 0.0014367516794272109 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.734723475976807e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001434607219117171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4321.0324132924525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.319789226853389, dt = 0.001434607219117171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.734723475976807e-16,0)
sum a = (4.163336342344337e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014325280891132727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4124.340662568202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3212238340725064, dt = 0.0014325280891132727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.734723475976807e-16,0)
sum a = (-4.163336342344337e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014305151380973509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4276.15361082689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3226563621616196, dt = 0.0014305151380973509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.734723475976807e-16,0)
sum a = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014285692213531723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4301.442316154471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.324086877299717, dt = 0.0014285692213531723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014266912011799762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4154.414323392567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3255154465210706, dt = 0.0014266912011799762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.001424881947310343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4204.693952702848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3269421377222503, dt = 0.001424881947310343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8041124150158794e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014231423373321833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4216.236906650892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3283670196695607, dt = 0.0014231423373321833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5326962749261384e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014214732571145893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4320.018023061621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.329790162006893, dt = 0.0014214732571145893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.001419875601237258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4225.530802854827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3312116352640073, dt = 0.001419875601237258 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014183502734231943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4238.455717403343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3326315108652445, dt = 0.0014183502734231943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014168981869743505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4257.0658314297925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3340498611386677, dt = 0.0014168981869743505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.8041124150158794e-16,0)
sum a = (0,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014155202652098315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4097.660596511983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.335466759325642, dt = 0.0014155202652098315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014142174419062464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4285.912616637925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.336882279590852, dt = 0.0014142174419062464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014129906617397659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4273.395847679587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.338296497032758, dt = 0.0014129906617397659 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.734723475976807e-16,0)
sum a = (0,1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014118408807293932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4180.603788656669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.339709487694498, dt = 0.0014118408807293932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.734723475976807e-16,0)
sum a = (-1.3877787807814457e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014107690666808814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4176.652722070594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3411213285752277, dt = 0.0014107690666808814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 288.43 us (96.9%)
LB move op cnt : 0
LB apply : 1.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (0,1.457167719820518e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014097761996307249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980.057771889883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3425320976419086, dt = 0.0014097761996307249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.734723475976807e-16,0)
sum a = (-4.163336342344337e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014088632722895557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4174.393579387436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.343941873841539, dt = 0.0014088632722895557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 266.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014080312904842253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4029.698736598466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.345350737113829, dt = 0.0014080312904842253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014072812735977872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4119.894863854359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.346758768404313, dt = 0.0014072812735977872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8735013540549517e-16,0)
sum a = (0,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014066142550065211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4100.572797452696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3481660496779106, dt = 0.0014066142550065211 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 224.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014060312825130482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4259.126104792769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3495726639329173, dt = 0.0014060312825130482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.90 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014055334187745175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4129.546056228465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3509786952154306, dt = 0.0014055334187745175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.942890293094024e-16,0)
sum a = (0,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014051217417247323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3985.2153330725805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.352384228634205, dt = 0.0014051217417247323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014047973449890045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4203.074734139118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.35378935037593, dt = 0.0014047973449890045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014045613382903722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4152.359248099776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.355194147720919, dt = 0.0014045613382903722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,1.457167719820518e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014044148478457616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4250.082429141355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3565987090592095, dt = 0.0014044148478457616 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014043590167504838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4139.651882201449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3580031239070554, dt = 0.0014043590167504838 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014043950053493589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4163.363026248851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.359407482923806, dt = 0.0014043950053493589 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014045239915925882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4124.269208797411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.360811877929155, dt = 0.0014045239915925882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.8735013540549517e-16,0)
sum a = (0,2.3592239273284576e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014047471713743481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4185.501213307185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.362216401920748, dt = 0.0014047471713743481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001405065758851905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4061.573727014128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3636211490921224, dt = 0.001405065758851905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.740863092043355e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014054809867428575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4168.03594978391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.365026214850974, dt = 0.0014054809867428575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5847379792054426e-16,1.8041124150158794e-16,0)
sum a = (0,-1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014059941065979221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4245.852565666758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.366431695837717, dt = 0.0014059941065979221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.688821387764051e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014066063890464601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4167.863758102583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.367837689944315, dt = 0.0014066063890464601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 268.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001407319124011718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4062.173003174516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3692442963333615, dt = 0.001407319124011718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6194324487249787e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-1.457167719820518e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014081336208925164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4219.903685574841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.370651615457373, dt = 0.0014081336208925164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 271.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6194324487249787e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014090512087078402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3987.2429733265626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3720597490782658, dt = 0.0014090512087078402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001410073236200528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4163.463050114396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3734688002869735, dt = 0.001410073236200528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5847379792054426e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.00141120107189595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4010.33631063632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.374878873523174, dt = 0.00141120107189595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014124361041112496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4232.2524217898945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.37629007459507, dt = 0.0014124361041112496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014137797409103832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4018.89795394498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3777025106991814, dt = 0.0014137797409103832 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3765711620882257e-16,1.5959455978986625e-16,0)
sum a = (0,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014152334099998495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4100.622929712297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3791162904400918, dt = 0.0014152334099998495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.5265566588595902e-16,0)
sum a = (-5.551115123125783e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014167985585595987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4149.24751383421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3805315238500917, dt = 0.0014167985585595987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014184766530032375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4197.08569224447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3819483224086513, dt = 0.0014184766530032375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.3877787807814457e-16,0)
sum a = (8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014202691786612002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4251.29911337122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3833667990616547, dt = 0.0014202691786612002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3765711620882257e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,1.8735013540549517e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014221776393801339 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4060.9673335019684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.384787068240316, dt = 0.0014221776393801339 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.001424203557031247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4272.4074784232325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.386209245879696, dt = 0.001424203557031247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 241.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3765711620882257e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001426348470919914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4152.539977640273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3876334494367275, dt = 0.001426348470919914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3071822230491534e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014286139370882996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4143.832169082577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3890597979076476, dt = 0.0014286139370882996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.445960101127298e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001431001527502209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4267.413696452384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.390488411844736, dt = 0.001431001527502209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5500435096859064e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014335128291128743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4213.664785974056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3919194133722383, dt = 0.0014335128291128743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.688821387764051e-16,1.457167719820518e-16,0)
sum a = (-8.326672684688674e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014361494427837308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4323.521607617784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3933529262013513, dt = 0.0014361494427837308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.723515857283587e-16,1.457167719820518e-16,0)
sum a = (0,2.5673907444456745e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014389129820717341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4177.811639881788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3947890756441352, dt = 0.0014389129820717341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5500435096859064e-16,1.5265566588595902e-16,0)
sum a = (-5.551115123125783e-17,2.0122792321330962e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001441805071852085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4161.257044463045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.396227988626207, dt = 0.001441805071852085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.457167719820518e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001444827346774656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4277.690449112325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.397669793698059, dt = 0.001444827346774656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 281.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.79 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5326962749261384e-16,1.3877787807814457e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014479814495397785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.287e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4040.015416643374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3991146210448338, dt = 0.0014479814495397785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6194324487249787e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014512690289804158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4123.92602212873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4005626024943734, dt = 0.0014512690289804158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.654126918244515e-16,1.3183898417423734e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014546917379371221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4304.598353430942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4020138715233537, dt = 0.0014546917379371221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.723515857283587e-16,1.3183898417423734e-16,0)
sum a = (-1.3877787807814457e-16,1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014582512309115898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4269.112366805419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4034685632612907, dt = 0.0014582512309115898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.1796119636642288e-16,0)
sum a = (-8.326672684688674e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014619491614839815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4293.938197574585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4049268144922022, dt = 0.0014619491614839815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8622937353617317e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001465787179478665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4323.104823119076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4063887636536863, dt = 0.001465787179478665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8275992658421956e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014697669278624865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4437.9241653069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.407854550833165, dt = 0.0014697669278624865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.896988204881268e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014738900393592084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4308.847192701609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.409324317761027, dt = 0.0014738900393592084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.3183898417423734e-16,0)
sum a = (-8.326672684688674e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014781581327633557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4436.91832739611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4107982078003865, dt = 0.0014781581327633557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001482572808936416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4295.875146480775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.41227636593315, dt = 0.001482572808936416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7929047963226594e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014871356464681075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4389.11279817166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4137589387420864, dt = 0.0014871356464681075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.688821387764051e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014918481969853899 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4424.967333413661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4152460743885547, dt = 0.0014918481969853899 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.249000902703301e-16,0)
sum a = (-8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014967119800919522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4466.061653378828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.41673792258554, dt = 0.0014967119800919522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.654126918244515e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015017284779211962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4287.965512949477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.418234634565632, dt = 0.0015017284779211962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.654126918244515e-16,1.249000902703301e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015068991292862184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4512.744280433314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4197363630435533, dt = 0.0015068991292862184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.34 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015122253234110265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4355.210285052377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4212432621728395, dt = 0.0015122253234110265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 224.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6194324487249787e-16,1.249000902703301e-16,0)
sum a = (-1.3877787807814457e-16,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015177083932282755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4568.3575297015595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4227554874962505, dt = 0.0015177083932282755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5153490401663703e-16,1.249000902703301e-16,0)
sum a = (-1.6653345369377348e-16,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001523349608230132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.298e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4209.603956793952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4242731958894788, dt = 0.001523349608230132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.654126918244515e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,2.1510571102112408e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015291501668606576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4490.9629668442685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.425796545497709, dt = 0.0015291501668606576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.654126918244515e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015351111884402274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4421.436609487249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4273256956645697, dt = 0.0015351111884402274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5587171270657905e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015412337046151621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4558.739449200314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.42886080685301, dt = 0.0015412337046151621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5413698923060224e-16,1.3877787807814457e-16,0)
sum a = (-8.326672684688674e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015475186503288853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4484.121618175722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.430402040557625, dt = 0.0015475186503288853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5934115965853266e-16,1.3877787807814457e-16,0)
sum a = (-8.326672684688674e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015539668543146858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4587.887448794725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.431949559207954, dt = 0.0015539668543146858 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.5265566588595902e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015605790291145282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4733.178283579528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.433503526062269, dt = 0.0015605790291145282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5413698923060224e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015673557606334116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4529.770825757464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4350641050913833, dt = 0.0015673557606334116 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.3183898417423734e-16,0)
sum a = (-1.1102230246251565e-16,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001574297497244584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4570.005546616874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4366314608520168, dt = 0.001574297497244584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.419939248987646e-16,1.3183898417423734e-16,0)
sum a = (0,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001581404538467503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4695.478721796331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4382057583492616, dt = 0.001581404538467503 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 239.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.454633718507182e-16,1.3183898417423734e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015886770232478396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4741.980932713357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.439787162887729, dt = 0.0015886770232478396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.1102230246251565e-16,0)
sum a = (-5.551115123125783e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015961149178770797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4654.6416169811455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.441375839910977, dt = 0.0015961149178770797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.1796119636642288e-16,0)
sum a = (-8.326672684688674e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016037180035984333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4816.036966186813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.442971954828854, dt = 0.0016037180035984333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.38524477946811e-16,1.1102230246251565e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001611485863955754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4890.262151533269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.444575672832453, dt = 0.001611485863955754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.237793284010081e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,1.0755285551056204e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016194178719530679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4853.247749403703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4461871586964086, dt = 0.0016194178719530679 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2724877535296173e-16,1.1102230246251565e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016275131771040074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4952.344025388225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4478065765683614, dt = 0.0016275131771040074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,9.71445146547012e-17,0)
sum a = (-1.1102230246251565e-16,9.367506770274758e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001635770692462897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4870.736114128783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4494340897454654, dt = 0.001635770692462897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.237793284010081e-16,1.0408340855860843e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016441890817423526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4950.11406365913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4510698604379284, dt = 0.0016441890817423526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1337098754514727e-16,1.1102230246251565e-16,0)
sum a = (-5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016527667466358829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4882.577786324736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.452714049519671, dt = 0.0016527667466358829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0296264668928643e-16,1.1102230246251565e-16,0)
sum a = (-8.326672684688674e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016615018144779555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4716.508434987989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.454366816266307, dt = 0.0016615018144779555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.1102230246251565e-16,0)
sum a = (-1.3877787807814457e-16,-8.673617379884035e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016703921263880406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4901.382087711354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4560283180807847, dt = 0.0016703921263880406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0729945537922845e-16,9.71445146547012e-17,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016794352260590898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4650.466797411867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.457698710207173, dt = 0.0016794352260590898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 243.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (74.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0599841277224584e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001688628349364284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 2.2% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4753.391361149439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4593781454332317, dt = 0.001688628349364284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0209528495129803e-16,9.020562075079397e-17,0)
sum a = (-1.942890293094024e-16,7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001697968414968455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4983.654744803592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.461066773782596, dt = 0.001697968414968455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0383000842727483e-16,1.0408340855860843e-16,0)
sum a = (-1.3877787807814457e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017074520161417697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5084.727312107011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4627647421975642, dt = 0.0017074520161417697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0079424234431542e-16,9.020562075079397e-17,0)
sum a = (-1.1102230246251565e-16,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017170754139827246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4975.419472843557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4644721942137062, dt = 0.0017170754139827246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0751629581372555e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00172683453226456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4989.624769718903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.466189269627689, dt = 0.00172683453226456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1445518971763278e-16,1.0408340855860843e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001736724954123438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4972.738440788821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4679161041599538, dt = 0.001736724954123438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0599841277224584e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,7.28583859910259e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001746741920807424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5035.404369060828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4696528291140774, dt = 0.001746741920807424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.984089975648473e-16,1.0408340855860843e-16,0)
sum a = (-8.326672684688674e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017568803327019926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5284.50551488239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4713995710348846, dt = 0.0017568803327019926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0437210951351759e-16,9.020562075079397e-17,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017671347528398058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5195.757148207437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4731564513675868, dt = 0.0017671347528398058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 221.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0317948712378353e-16,8.326672684688674e-17,0)
sum a = (-1.3877787807814457e-16,4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001777499413089346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5409.283400469446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4749235861204264, dt = 0.001777499413089346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0843786766033823e-16,9.020562075079397e-17,0)
sum a = (-1.3877787807814457e-16,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017879682231982416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5248.440097407967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4767010855335156, dt = 0.0017879682231982416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0499552576269675e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017985347828423173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5385.973696817435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.478489053756714, dt = 0.0017985347828423173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 240.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.064049885869279e-16,9.71445146547012e-17,0)
sum a = (-8.326672684688674e-17,8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018091923968004877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5237.938048324025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4802875885395563, dt = 0.0018091923968004877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0822102722584113e-16,8.326672684688674e-17,0)
sum a = (1.1102230246251565e-16,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018199340933382781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5421.405823439114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4820967809363568, dt = 0.0018199340933382781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1087732254843061e-16,9.020562075079397e-17,0)
sum a = (-1.942890293094024e-16,8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018307526458394667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5384.973584579119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4839167150296952, dt = 0.0018307526458394667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1055206189668496e-16,1.0408340855860843e-16,0)
sum a = (-5.551115123125783e-17,1.5612511283791264e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018416405976761348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5494.07556084978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4857474676755347, dt = 0.0018416405976761348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1011838102769076e-16,1.0408340855860843e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001852590290253199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5505.738881143353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4875891082732107, dt = 0.001852590290253199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0925101928970236e-16,1.0408340855860843e-16,0)
sum a = (-1.942890293094024e-16,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018635938941049292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5568.029965971899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4894416985634638, dt = 0.0018635938941049292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.61 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1033522146218786e-16,9.71445146547012e-17,0)
sum a = (2.7755575615628914e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018746434428593888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5320.053049386585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4913052924575685, dt = 0.0018746434428593888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1272046624165597e-16,9.020562075079397e-17,0)
sum a = (5.551115123125783e-17,5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018857308698233591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5615.75472565673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.493179935900428, dt = 0.0018857308698233591 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 264.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1337098754514727e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001896848046877014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5361.22188748648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4950656667702513, dt = 0.001896848046877014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1423834928313568e-16,9.020562075079397e-17,0)
sum a = (-8.326672684688674e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019079868253059642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5630.453129605329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4969625148171284, dt = 0.0019079868253059642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 520.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.71445146547012e-17,0)
sum a = (0,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019191390781404262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5503.490640845617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4988705016424344, dt = 0.0019191390781404262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1467203015212988e-16,1.0408340855860843e-16,0)
sum a = (-1.3877787807814457e-16,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019302967435191848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5794.992934440346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.500789640720575, dt = 0.0019302967435191848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597307275911248e-16,9.71445146547012e-17,0)
sum a = (-1.1102230246251565e-16,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019414518685515782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5577.240105226588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5027199374640943, dt = 0.0019414518685515782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,9.020562075079397e-17,0)
sum a = (-2.7755575615628914e-17,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019525966531160287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5634.296692475794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5046613893326457, dt = 0.0019525966531160287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.34 us (9.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.30 us (88.7%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597307275911248e-16,8.326672684688674e-17,0)
sum a = (-1.6653345369377348e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001963723493010141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5701.543900053698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5066139859857617, dt = 0.001963723493010141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 254.01 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,9.71445146547012e-17,0)
sum a = (0,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019748250218565894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5890.713948699397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.508577709478772, dt = 0.0019748250218565894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 258.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.177077962350893e-16,9.020562075079397e-17,0)
sum a = (-1.1102230246251565e-16,-1.6479873021779667e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019858941511718777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5754.622584470307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5105525345006288, dt = 0.0019858941511718777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,1.0408340855860843e-16,0)
sum a = (1.3877787807814457e-16,8.239936510889834e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019969241080220906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5908.196385291826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5125384286518004, dt = 0.0019969241080220906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-2.5587171270657905e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002007908469720972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5826.484872284101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5145353527598227, dt = 0.002007908469720972 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,8.326672684688674e-17,0)
sum a = (-1.6653345369377348e-16,-2.6020852139652106e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.00201884119507062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5980.47164796898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5165432612295437, dt = 0.00201884119507062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 249.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597307275911248e-16,6.938893903907228e-17,0)
sum a = (5.551115123125783e-17,-8.74138001566438e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020297166517027096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5899.005393686934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5185621024246143, dt = 0.0020297166517027096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,6.938893903907228e-17,0)
sum a = (-8.326672684688674e-17,3.0357660829594124e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002040529639146864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6142.3632957940235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.520591819076317, dt = 0.002040529639146864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597307275911248e-16,7.632783294297951e-17,0)
sum a = (1.1102230246251565e-16,-7.15573433840433e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020512754073307715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5944.353076827419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.522632348715464, dt = 0.0020512754073307715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597307275911248e-16,7.632783294297951e-17,0)
sum a = (-2.7755575615628914e-17,7.37257477290143e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020619496703013058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6158.953550823374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.524683624122795, dt = 0.0020619496703013058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.020562075079397e-17,0)
sum a = (-2.7755575615628914e-17,-4.90059381963448e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002072548615045049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6101.275168279614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.526745573793096, dt = 0.002072548615045049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020830689053770697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6142.603703227387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.528818122408141, dt = 0.0020830689053770697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1423834928313568e-16,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020935076809563123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6099.921308637814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5309011913135184, dt = 0.0020935076809563123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 250.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021038625515715148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6033.433816631809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5329946989944747, dt = 0.0021038625515715148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,-3.382710778154774e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002114131586921028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6309.463468680089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.535098561546046, dt = 0.002114131586921028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1337098754514727e-16,7.632783294297951e-17,0)
sum a = (-1.1102230246251565e-16,-2.2551405187698492e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002124313302181108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6207.480348293219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5372126931329673, dt = 0.002124313302181108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,8.326672684688674e-17,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021344066397185027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6378.0902143914445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5393370064351486, dt = 0.0021344066397185027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 271.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,6.245004513516506e-17,0)
sum a = (-8.326672684688674e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002144410947353239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5962.871776575067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5414714130748672, dt = 0.002144410947353239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,-3.642919299551295e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002154325953615674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6522.085385292012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5436158240222206, dt = 0.002154325953615674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,5.551115123125783e-17,0)
sum a = (5.551115123125783e-17,2.2551405187698492e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002164151740467783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6147.474120307538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5457701499758363, dt = 0.002164151740467783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,6.245004513516506e-17,0)
sum a = (0,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002173888713972526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6206.609806753325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.547934301716304, dt = 0.002173888713972526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021835375733973966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6196.112086062383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5501081904302767, dt = 0.0021835375733973966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0990154059319366e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,-5.377642775528102e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021930992792299577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6601.576893812421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.552291728003674, dt = 0.0021930992792299577 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 263.02 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,6.245004513516506e-17,0)
sum a = (1.3877787807814457e-16,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022025750205653715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6509.2313861771645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.554484827282904, dt = 0.0022025750205653715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,6.245004513516506e-17,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022119661822999764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6604.950982283554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5566874023034694, dt = 0.0022119661822999764 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,-1.214306433183765e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002221274312532472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6495.689097725523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5588993684857693, dt = 0.002221274312532472 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,5.551115123125783e-17,0)
sum a = (-5.551115123125783e-17,3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002230501090536602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6781.050345444284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5611206427983015, dt = 0.002230501090536602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 272.73 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,4.85722573273506e-17,0)
sum a = (-5.551115123125783e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022396482956280293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6360.699207572004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.563351143888838, dt = 0.0022396482956280293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,4.163336342344337e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022487177772047566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6583.656237581976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5655907921844663, dt = 0.0022487177772047566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 281.40 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0990154059319366e-16,5.551115123125783e-17,0)
sum a = (2.7755575615628914e-17,-7.28583859910259e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022577114261962674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6371.93992001184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.567839509961671, dt = 0.0022577114261962674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,5.551115123125783e-17,0)
sum a = (-1.1102230246251565e-16,-7.28583859910259e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022666311481128344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6757.378324794821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5700972213878672, dt = 0.0022666311481128344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,5.551115123125783e-17,0)
sum a = (-2.7755575615628914e-17,-5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022754788378440264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6656.7673979758565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.57236385253598, dt = 0.0022754788378440264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,4.85722573273506e-17,0)
sum a = (-5.551115123125783e-17,-7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.00228425635631525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6818.050311648751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5746393313738243, dt = 0.00228425635631525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0990154059319366e-16,6.245004513516506e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002292965509073923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6826.589099748215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5769235877301395, dt = 0.002292965509073923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002301608026842798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6769.3514966275925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5792165532392133, dt = 0.002301608026842798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,6.938893903907228e-17,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002310185548047714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6929.162764739542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.581518161266056, dt = 0.002310185548047714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.00231869960330041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6701.375196888874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5838283468141037, dt = 0.00231869960330041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (1.4%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,8.326672684688674e-17,0)
sum a = (-5.551115123125783e-17,5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002327151601794386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7026.829706589475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.586147046417404, dt = 0.002327151601794386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002335542819552806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6938.39627450297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5884741980191985, dt = 0.002335542819552806 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 235.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,8.326672684688674e-17,0)
sum a = (2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023438743894520597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7015.339171462984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5908097408387514, dt = 0.0023438743894520597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,8.326672684688674e-17,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002352147292932599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6917.144428071594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5931536152282035, dt = 0.002352147292932599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,8.326672684688674e-17,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.002360362353299768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7070.116662776383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.595505762521136, dt = 0.002360362353299768 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,6.938893903907228e-17,0)
sum a = (-8.326672684688674e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002368520230511182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6869.167517672831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.597866124874436, dt = 0.002368520230511182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,7.632783294297951e-17,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023766214173436143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7123.267948442048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.600234645104947, dt = 0.0023766214173436143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,6.938893903907228e-17,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.002384666236830777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6969.257708146604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.602611266522291, dt = 0.002384666236830777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,7.632783294297951e-17,0)
sum a = (-1.1102230246251565e-16,-1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.002392654840863767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7040.1246935737745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6049959327591217, dt = 0.002392654840863767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,6.245004513516506e-17,0)
sum a = (-8.326672684688674e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024005872098477633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6832.816200262064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6073885875999854, dt = 0.0024005872098477633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,6.938893903907228e-17,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024084631533116637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7012.69356706394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.609789174809833, dt = 0.0024084631533116637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 260.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,7.632783294297951e-17,0)
sum a = (-8.326672684688674e-17,-9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024162823113714326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6774.273642403252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6121976379631446, dt = 0.0024162823113714326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,9.020562075079397e-17,0)
sum a = (-5.551115123125783e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002424044156952777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7280.864535910966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.614613920274516, dt = 0.002424044156952777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.87 us (96.7%)
LB move op cnt : 0
LB apply : 2.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,9.020562075079397e-17,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024317479986840935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7037.678090021021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6170379644314687, dt = 0.0024317479986840935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,9.71445146547012e-17,0)
sum a = (-5.551115123125783e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.002439392984376402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7199.473006384846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6194697124301527, dt = 0.002439392984376402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024469781050129057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7171.527198198706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.621909105414529, dt = 0.0024469781050129057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-1.734723475976807e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.002454502199176799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7323.059946219985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.624356083519542, dt = 0.002454502199176799 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002461963957851924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7045.839071461017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6268105857187187, dt = 0.002461963957851924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024693619295367347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7434.657028112667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6292725496765708, dt = 0.0024693619295367347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,1.1102230246251565e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002476694525617658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7422.510200099063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6317419116061074, dt = 0.002476694525617658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,1.249000902703301e-16,0)
sum a = (-5.551115123125783e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002483960025953346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7471.300249898246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.634218606131725, dt = 0.002483960025953346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024911565846264215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7431.017496239346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.636702566157678, dt = 0.0024911565846264215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,1.1102230246251565e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002498282235824144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7473.3887921673495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.639193722742305, dt = 0.002498282235824144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.0408340855860843e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025053348998138572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7194.436995366732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.641692004978129, dt = 0.0025053348998138572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 227.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.0408340855860843e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025123123889832597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7492.210687001435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.644197339877943, dt = 0.0025123123889832597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025192124139192945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7438.733487031814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6467096522669262, dt = 0.0025192124139192945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.249000902703301e-16,0)
sum a = (0,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025260325895029648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7252.680172216605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6492288646808455, dt = 0.0025260325895029648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.249000902703301e-16,0)
sum a = (0,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025327704410004724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7359.103124689994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6517548972703486, dt = 0.0025327704410004724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.249000902703301e-16,0)
sum a = (-5.551115123125783e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025394234101339687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7212.029037717091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.654287667711349, dt = 0.0025394234101339687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3183898417423734e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025459888611176935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7441.376313144603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.656827091121483, dt = 0.0025459888611176935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 262.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002552464086647579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7438.720455940708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.659373079982601, dt = 0.002552464086647579 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.457167719820518e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002558846313834361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7756.186687879603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6619255440692484, dt = 0.002558846313834361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025651327100720362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7379.614021663116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6644843903830826, dt = 0.0025651327100720362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.002571320388835011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7746.14831190628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6670495230931546, dt = 0.002571320388835011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.5265566588595902e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.002577406415398624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7381.345438790724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6696208434819897, dt = 0.002577406415398624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.002583387812478904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7705.948383830662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6721982498973884, dt = 0.002583387812478904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.70 us (96.9%)
LB move op cnt : 0
LB apply : 1.79 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025892615657883444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7376.565008315556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6747816377098674, dt = 0.0025892615657883444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025950246295053598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7548.329594941435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.677370899275656, dt = 0.0025950246295053598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026006739316557156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7718.106451538231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6799659239051614, dt = 0.0026006739316557156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026062063794048715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7840.62379947322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.682566597836817, dt = 0.0026062063794048715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.002611618864260518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7958.530097325597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6851728042162217, dt = 0.002611618864260518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.734723475976807e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026169082671850656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7786.986095757882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6877844230804824, dt = 0.0026169082671850656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 279.96 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6653345369377348e-16,0)
sum a = (0,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026220714636180325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7600.742707846384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6904013313476676, dt = 0.0026220714636180325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6653345369377348e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026271053284085185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7789.584354764105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6930234028112854, dt = 0.0026271053284085185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.002632006740658068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7769.148898010529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.695650508139694, dt = 0.002632006740658068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (0,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.002636772588474331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7867.298028089985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.698282514880352, dt = 0.002636772588474331 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026413997736359253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7714.372698871652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7009192874688264, dt = 0.0026413997736359253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.33 us (95.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.734723475976807e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.002645885216168917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7905.174201662441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7035606872424625, dt = 0.002645885216168917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6653345369377348e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026502258588353097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7923.676961733425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7062065724586315, dt = 0.0026502258588353097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 245.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026544186715337995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7598.874993872924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7088567983174667, dt = 0.0026544186715337995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026584606556130466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7956.923629546218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7115112169890003, dt = 0.0026584606556130466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.002662348848097522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.268e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7545.2403877350125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7141696776446134, dt = 0.002662348848097522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.95 us (95.6%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8735013540549517e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026660803258259117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7670.725021229609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.716832026492711, dt = 0.0026660803258259117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026696522095018857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7731.940074737001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.719498106818537, dt = 0.0026696522095018857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 227.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026730616676569493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7954.942568465774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.722167759028039, dt = 0.0026730616676569493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.002676305920524874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7537.264850535679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7248408206956958, dt = 0.002676305920524874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8041124150158794e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026793822438271097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8068.912672052427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.727517126616221, dt = 0.0026793822438271097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.8735013540549517e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.002682287972468425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7842.808514090383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7301965088600477, dt = 0.002682287972468425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002685020504141831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7974.936634740445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7328787968325163, dt = 0.002685020504141831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002687577302841765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7668.839579121963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7355638173366583, dt = 0.002687577302841765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026899559022843136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7811.374883725159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7382513946395, dt = 0.0026899559022843136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 261.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002692153909233176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7802.124791104858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7409413505417843, dt = 0.002692153909233176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.73 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8735013540549517e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002694169006729892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7928.03568625993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7436335044510174, dt = 0.002694169006729892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002695998957226808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8036.864328192483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7463276734577473, dt = 0.002695998957226808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002697641605621087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8088.724856917546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.749023672414974, dt = 0.002697641605621087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002699094882188009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8093.713953973773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.751721314020595, dt = 0.002699094882188009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002700356805411757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8113.247460943432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7544204089027833, dt = 0.002700356805411757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.8041124150158794e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027014254847117255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7903.682531415284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.757120765708195, dt = 0.0027014254847117255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027022991230624023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7878.3898854689705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7598221911929066, dt = 0.0027022991230624023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027029760195048423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7996.78168537953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.762524490315969, dt = 0.0027029760195048423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (0.6%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 360.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 424.41 us (97.9%)
LB move op cnt : 0
LB apply : 1.97 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.8041124150158794e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002703454571547619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.430e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6805.837112674457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.765227466335474, dt = 0.002703454571547619 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.7694179454963432e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027037332774552205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8133.2996195700425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7679309209070215, dt = 0.0027037332774552205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.30 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.734723475976807e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002703810738421803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7847.725527328164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7706346541844766, dt = 0.002703810738421803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027036856606281936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8058.661414105375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7733384649228983, dt = 0.0027036856606281936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 273.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.00270335685718013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7604.525851988504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7760421505835264, dt = 0.00270335685718013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 247.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7694179454963432e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027028232499256423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7944.364371361083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7787455074407066, dt = 0.0027028232499256423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.37 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027020838711495944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7923.618336990224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7814483306906324, dt = 0.0027020838711495944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.002701137865143489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7916.538368561513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.784150414561782, dt = 0.002701137865143489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.7694179454963432e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026999844896485724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7823.885718425423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7868515524269255, dt = 0.0026999844896485724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026986231171705092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8165.99596128259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.789551536916574, dt = 0.0026986231171705092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026970532361638554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7899.764286242464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7922501600337446, dt = 0.0026970532361638554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026952744520847686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8060.924524089127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7949472132699085, dt = 0.0026952744520847686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.7694179454963432e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.002693286488310386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8078.31725313993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.797642487721993, dt = 0.002693286488310386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026910891869235394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7960.406925343934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8003357742103034, dt = 0.0026910891869235394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 370.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 271.28 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026886825093615173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7771.163576725417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.803026863397227, dt = 0.0026886825093615173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026860665369277978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7812.177790486379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8057155459065886, dt = 0.0026860665369277978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 243.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.700029006457271e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026832414711657425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8041.393099206051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8084016124435163, dt = 0.0026832414711657425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 238.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026802076340934956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7909.961976998641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.811084853914682, dt = 0.0026802076340934956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.700029006457271e-16,0)
sum a = (1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026769654682994443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.436e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6721.425519192393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.813765061548776, dt = 0.0026769654682994443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 280.09 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.700029006457271e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026735155368977632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7555.391542040402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8164420270170756, dt = 0.0026735155368977632 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.00266985852334381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8016.578404383118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8191155425539733, dt = 0.00266985852334381 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.002665995231109276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7978.247650922141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8217854010773173, dt = 0.002665995231109276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.51 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.914335439641036e-16,1.8041124150158794e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026619265832172113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7650.127998145487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.824451396308427, dt = 0.0026619265832172113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.914335439641036e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026576536216372623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7755.951516343583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.827113322891644, dt = 0.0026576536216372623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.914335439641036e-16,1.7694179454963432e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026531775065416594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7745.19407028974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8297709765132812, dt = 0.0026531775065416594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026484995154227044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7608.059204523981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8324241540198227, dt = 0.0026484995154227044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.700029006457271e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.002643621042072738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7895.186470484948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8350726535352453, dt = 0.002643621042072738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.914335439641036e-16,1.734723475976807e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026385435954277823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7992.699981743637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.837716274577318, dt = 0.0026385435954277823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 292.28 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8449465006019636e-16,1.700029006457271e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.002633268798276281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.275e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7450.163214075918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.840354818172746, dt = 0.002633268798276281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.7694179454963432e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.002627798385834618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7959.790045983701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8429880869710225, dt = 0.002627798385834618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.27 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.002622134204191248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7566.201092215451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.845615885356857, dt = 0.002622134204191248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.8388068845354155e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026162782086216123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7888.312400265481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8482380195610486, dt = 0.0026162782086216123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026102324617761634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7515.4492951327475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8508542977696703, dt = 0.0026102324617761634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.8041124150158794e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026039991317440576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7549.624852085351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8534645302314465, dt = 0.0026039991317440576 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 273.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.7694179454963432e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.002597580489995386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7573.721796092279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8560685293631907, dt = 0.002597580489995386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.96 us (94.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025909789092049174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7670.222450050681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.858666109853186, dt = 0.0025909789092049174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025841968609606556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7441.943870724495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.861257088762391, dt = 0.0025841968609606556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025772369133606897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7635.155528228209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8638412856233515, dt = 0.0025772369133606897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8388068845354155e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025701017285020273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7522.735419086041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.866418522536712, dt = 0.0025701017285020273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.717376241217039e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002562794059865336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7839.81899530858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.868988624265214, dt = 0.002562794059865336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.7694179454963432e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002555316749599697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7685.602553339217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.871551418325079, dt = 0.002555316749599697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.7867651802561113e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025476727257117177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7336.814630464272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8741067350746787, dt = 0.0025476727257117177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8735013540549517e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025398649991634605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7460.436429581854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8766544078003906, dt = 0.0025398649991634605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.7520707107365752e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025318966608839357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7443.1550080251445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.879194272799554, dt = 0.0025318966608839357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 244.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.7867651802561113e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002523770878698966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7548.343001176925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.881726169460438, dt = 0.002523770878698966 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5673907444456745e-16,1.7867651802561113e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025154908941845007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7446.759379836318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8842499403391373, dt = 0.0025154908941845007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.7694179454963432e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025070600194485263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7676.753588240602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.886765431233322, dt = 0.0025070600194485263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.8388068845354155e-16,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002498481633846894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7366.303526696778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8892724912527705, dt = 0.002498481633846894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.717376241217039e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024897591806385434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7357.943335459287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.891770972886617, dt = 0.0024897591806385434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.700029006457271e-16,0)
sum a = (2.0816681711721685e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002480896163585662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7387.297013310418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8942607320672558, dt = 0.002480896163585662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.6653345369377348e-16,0)
sum a = (4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002471896143504467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7391.759269390884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8967416282308416, dt = 0.002471896143504467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.636779683484747e-16,1.6132928326584306e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024627627347723734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7272.201828273377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.899213524374346, dt = 0.0024627627347723734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.706168622523819e-16,1.5959455978986625e-16,0)
sum a = (-2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.002453499601797386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7395.986193279959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9016762871091184, dt = 0.002453499601797386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-16,1.5699247457590104e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024441104554556213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7257.234407469211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9041297867109157, dt = 0.0024441104554556213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.6306400674181987e-16,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002434599049502903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7299.16275428427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9065738971663713, dt = 0.002434599049502903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.5959455978986625e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002424969176966423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7455.085687391506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.909008496215874, dt = 0.002424969176966423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6479873021779667e-16,0)
sum a = (-2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024152246665224623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7248.679392630268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9114334653928404, dt = 0.0024152246665224623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6219664500383146e-16,0)
sum a = (9.020562075079397e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024053693788661755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6908.636183362069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9138486900593628, dt = 0.0024053693788661755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6132928326584306e-16,0)
sum a = (3.469446951953614e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.002395407203079427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7043.094519721566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.916254059438229, dt = 0.002395407203079427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 267.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5959455978986625e-16,0)
sum a = (4.85722573273506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023853420530026274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6806.43931174139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9186494666413085, dt = 0.0023853420530026274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6566609195578508e-16,0)
sum a = (-4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.002375177863616495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7047.049412386501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.921034808694311, dt = 0.002375177863616495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 280.82 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6393136847980827e-16,0)
sum a = (7.632783294297951e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.002364918587439585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6715.5545800339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9234099865579277, dt = 0.002364918587439585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.700029006457271e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002354568190947359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7058.498607803338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.925774905145367, dt = 0.002354568190947359 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6696713456276768e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002344130651018475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7020.02248294197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9281294733363143, dt = 0.002344130651018475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.736891880321778e-16,0)
sum a = (1.0061396160665481e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023336099514138843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7057.593442974715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9304736039873327, dt = 0.0023336099514138843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.6024508109335756e-16,0)
sum a = (7.632783294297951e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002323010079294163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6971.184890494823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9328072139387467, dt = 0.002323010079294163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.5493249044817858e-16,0)
sum a = (8.673617379884035e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002312335021780425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7039.65558251406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.935130224018041, dt = 0.002312335021780425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.5445815199771618e-16,0)
sum a = (1.0408340855860843e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023015887625639584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6836.699292225508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9374425590398214, dt = 0.0023015887625639584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 472.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.4251837557321956e-16,0)
sum a = (4.5102810375396984e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002290775278569599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6927.592705657014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9397441478023856, dt = 0.002290775278569599 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3975366003338152e-16,0)
sum a = (7.979727989493313e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022798985366776756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6796.779630120012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9420349230809553, dt = 0.0022798985366776756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.2728533504979822e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002268962490509162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7002.199146730782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.944314821617633, dt = 0.002268962490509162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (0.3%)
patch tree reduce : 421.00 ns (0.0%)
gen split merge : 401.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.0%)
LB compute : 868.58 us (98.9%)
LB move op cnt : 0
LB apply : 2.10 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.3227266504323154e-16,0)
sum a = (4.683753385137379e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.00225797107727847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.881e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4341.794081804116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.946583784108142, dt = 0.00225797107727847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1882855810441129e-16,0)
sum a = (2.2551405187698492e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022469282147181474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6685.65148942255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9488417551854202, dt = 0.0022469282147181474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1015494072452725e-16,0)
sum a = (1.196959198423997e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002235837798079457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6882.817315133314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.951088683400138, dt = 0.002235837798079457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.1232334506949826e-16,0)
sum a = (-4.85722573273506e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022247036972126728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6673.954526228982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9533245211982178, dt = 0.0022247036972126728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 276.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1622647289044608e-16,0)
sum a = (2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002213529753730601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.280e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6258.9790878222975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9555492248954303, dt = 0.002213529753730601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1102230246251565e-16,0)
sum a = (9.194034422677078e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022023197782586827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6342.401265685595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9577627546491607, dt = 0.0022023197782586827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.249000902703301e-16,0)
sum a = (6.7220534694101275e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021910775477747176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6324.254613144148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9599650744274193, dt = 0.0021910775477747176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.205632815803881e-16,0)
sum a = (6.331740687315346e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002179806803041033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6560.068771988362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.962156151975194, dt = 0.002179806803041033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.214306433183765e-16,0)
sum a = (4.7271214720367993e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002168511246131658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.273e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6162.2399709040155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.964335958778235, dt = 0.002168511246131658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3704315460216776e-16,0)
sum a = (1.5525775109992423e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002157194538056799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6457.591502812842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.966504470024367, dt = 0.002157194538056799 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3617579286417936e-16,0)
sum a = (3.0357660829594124e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021458602964866563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6423.142415123011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9686616645624238, dt = 0.0021458602964866563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.2923689896027213e-16,0)
sum a = (3.122502256758253e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021345120935763566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6322.490487617046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9708075248589103, dt = 0.0021345120935763566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.3183898417423734e-16,0)
sum a = (-4.683753385137379e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021231534538935265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6283.798500305744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9729420369524866, dt = 0.0021231534538935265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.2663481374630692e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021117878524497405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6227.656620433313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9750651904063803, dt = 0.0021117878524497405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.214306433183765e-16,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021004187128368557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6180.752044944924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.97717697825883, dt = 0.0021004187128368557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.2%)
LB compute : 227.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.2836953722228372e-16,0)
sum a = (1.0408340855860843e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002089049405468965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6276.927812464091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.979277396971667, dt = 0.002089049405468965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.249000902703301e-16,0)
sum a = (-1.0408340855860843e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002077683245930448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6295.093184233907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9813664463771357, dt = 0.002077683245930448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.231653667943533e-16,0)
sum a = (2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002066323493430374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6182.604834512419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.983444129623066, dt = 0.002066323493430374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.3183898417423734e-16,0)
sum a = (2.42861286636753e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.00205497334936323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6093.0978279489855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9855104531164964, dt = 0.00205497334936323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.3183898417423734e-16,0)
sum a = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020436359559757493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6022.904968030992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9875654264658595, dt = 0.0020436359559757493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.249000902703301e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020323143951393565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6289.207213490811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9896090624218354, dt = 0.0020323143951393565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1449174941446927e-16,0)
sum a = (1.3183898417423734e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020210116872275497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5731.2152370886515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.991641376816975, dt = 0.0020210116872275497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.196959198423997e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020097307900972913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5947.038083857017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9936623885042026, dt = 0.0020097307900972913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019984745981733165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5737.684526518338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9956721192943, dt = 0.0019984745981733165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.1449174941446927e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001987245941634024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5888.484017688707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9976705938924733, dt = 0.001987245941634024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.231653667943533e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001976047585697475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5810.4152439001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.999657839834107, dt = 0.001976047585697475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.1622647289044608e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019648822300058206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.874488572583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0016338874198047, dt = 0.0019648822300058206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.249000902703301e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019537525081062984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5808.02483955618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0035987696498108, dt = 0.0019537525081062984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.214306433183765e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019426609870268324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5900.604723483323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.005552522157917, dt = 0.0019426609870268324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.214306433183765e-16,0)
sum a = (-7.632783294297951e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019316101669440726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5894.904868601293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.007495183144944, dt = 0.0019316101669440726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.2836953722228372e-16,0)
sum a = (1.249000902703301e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001920602480941613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5724.561508317619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.009426793311888, dt = 0.001920602480941613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.2836953722228372e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019096402948559738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5775.148034785192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.01134739579283, dt = 0.0019096402948559738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.3183898417423734e-16,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001898725907207858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5599.730436945557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.013257036087686, dt = 0.001898725907207858 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.3530843112619095e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018878615492160479 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5697.350426252978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.015155761994894, dt = 0.0018878615492160479 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.57 us (95.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018770493848912705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5463.0234010375525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.01704362354411, dt = 0.0018770493848912705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.3877787807814457e-16,0)
sum a = (6.245004513516506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018662915112072158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5534.062255832327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.018920672929001, dt = 0.0018662915112072158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.249000902703301e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018555899583458958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5522.648182088373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0207869644402083, dt = 0.0018555899583458958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.2836953722228372e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018449466900144192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5342.701429342264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0226425543985544, dt = 0.0018449466900144192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.2836953722228372e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018343636038302242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5439.860112479369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.024487501088569, dt = 0.0018343636038302242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.1102230246251565e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018238425317718063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5475.875709215869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0263218646923993, dt = 0.0018238425317718063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.86 us (97.0%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.1102230246251565e-16,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018133852406918944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5251.880810133606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.028145707224171, dt = 0.0018133852406918944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.1102230246251565e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018029934328900727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5516.504139364487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.029959092464863, dt = 0.0018029934328900727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 275.47 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.0755285551056204e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017926687467417711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5148.034985322528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0317620858977534, dt = 0.0017926687467417711 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.37 us (3.4%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.75 us (0.7%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 228.32 us (92.8%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.0755285551056204e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017824127573806208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.7% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5249.14839569174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.033554754644495, dt = 0.0017824127573806208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 268.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1449174941446927e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017722269774311128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5069.893948595565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0353371674018756, dt = 0.0017722269774311128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.1102230246251565e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017621128577885506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5272.209842273759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0371093943793066, dt = 0.0017621128577885506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.214306433183765e-16,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001752071788443314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.286e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4931.07898769702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0388715072370953, dt = 0.001752071788443314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.3183898417423734e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001742105099346471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5323.985261048708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0406235790255387, dt = 0.001742105099346471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 254.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.2836953722228372e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.001732214061313793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5144.399312979076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0423656841248854, dt = 0.001732214061313793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 244.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.3183898417423734e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017223998869653281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5176.058723749933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.044097898186199, dt = 0.0017223998869653281 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.98 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.4224732503009818e-16,0)
sum a = (-6.938893903907228e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.001712663731697674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4859.1878886069135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0458202980731643, dt = 0.001712663731697674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3877787807814457e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017030066946861968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5053.177816425828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.047532961804862, dt = 0.0017030066946861968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3530843112619095e-16,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016934298199144592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5215.290316405888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.049235968499548, dt = 0.0016934298199144592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3530843112619095e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.001683934097228231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5135.154304188377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0509293983194623, dt = 0.001683934097228231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.06 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3530843112619095e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016745204634114805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4939.2129328797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0526133324166906, dt = 0.0016745204634114805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.2836953722228372e-16,0)
sum a = (1.5265566588595902e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001665189803281839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4932.414480971489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.054287852880102, dt = 0.001665189803281839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.3183898417423734e-16,0)
sum a = (9.71445146547012e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016559429508031082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4753.70109798028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.055953042683384, dt = 0.0016559429508031082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.3183898417423734e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.001646780690212454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.304e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4570.160173388716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0576089856341873, dt = 0.001646780690212454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.2836953722228372e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016377037571599778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4909.506279944079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0592557663243998, dt = 0.0016377037571599778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 230.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.2836953722228372e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016287128398585105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4900.252193016759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0608934700815595, dt = 0.0016287128398585105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.249000902703301e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016198085802414722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4896.138883244558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.062522182921418, dt = 0.0016198085802414722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.0755285551056204e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001610991575126796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4869.6601431252175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0641419915016597, dt = 0.001610991575126796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.1102230246251565e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016022623773849394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4815.230600617114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0657529830767865, dt = 0.0016022623773849394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.1449174941446927e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015936214971091513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4637.540105986828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0673552454541713, dt = 0.0015936214971091513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.1449174941446927e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015850694027861906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4681.572245314537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0689488669512803, dt = 0.0015850694027861906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 233.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.1102230246251565e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015766065224658223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4660.373491452098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0705339363540665, dt = 0.0015766065224658223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.1449174941446927e-16,0)
sum a = (1.1102230246251565e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.001568233244927474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.6501021012855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.072110542876532, dt = 0.001568233244927474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.2836953722228372e-16,0)
sum a = (9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001559949920842538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4763.710194820764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0736787761214597, dt = 0.001559949920842538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.249000902703301e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015517568639308705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.331e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4218.399086459779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0752387260423024, dt = 0.0015517568639308705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 270.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.1796119636642288e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015436543521101386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4399.640480759294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.076790482906233, dt = 0.0015436543521101386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 272.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.1102230246251565e-16,0)
sum a = (1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015356426286367412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4474.897284454011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0783341372583433, dt = 0.0015356426286367412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.58 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.1796119636642288e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015277219032370968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4432.114220757977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.07986977988698, dt = 0.0015277219032370968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.1102230246251565e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001519892353228193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4579.330520400455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.081397501790217, dt = 0.001519892353228193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 22.96 us (7.9%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.19 us (89.2%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.1796119636642288e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.001512154124626351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4318.431483549016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.082917394143445, dt = 0.001512154124626351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.1796119636642288e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001504507333243236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4448.2862202776005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0844295482680715, dt = 0.001504507333243236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.1102230246251565e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014969520657682265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4414.734947390271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0859340556013146, dt = 0.0014969520657682265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.1796119636642288e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014894883808363143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4556.850788854262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.087431007667083, dt = 0.0014894883808363143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014821163100807808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4438.586060677151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0889204960479195, dt = 0.0014821163100807808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 227.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.3183898417423734e-16,0)
sum a = (0,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014748358591699644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4489.330528948247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0904026123580004, dt = 0.0014748358591699644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014676470088274907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4403.616088848382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0918774482171703, dt = 0.0014676470088274907 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.249000902703301e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.001460549715835409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4177.716830708296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0933450952259975, dt = 0.001460549715835409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014535439140197198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4410.989579861607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.094805644941833, dt = 0.0014535439140197198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014466295152178665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4376.880912446617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0962591888558526, dt = 0.0014466295152178665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.3183898417423734e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014398064102277798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4391.425584407947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0977058183710704, dt = 0.0014398064102277798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.73 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.249000902703301e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014330744697381502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4184.486961536139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0991456247812983, dt = 0.0014330744697381502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.3877787807814457e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014264335452396305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4307.447043528386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1005786992510362, dt = 0.0014264335452396305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014198834699167325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4239.855843521331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.102005132796276, dt = 0.0014198834699167325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.3183898417423734e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014134240595202224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4304.235111783084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1034250162661925, dt = 0.0014134240595202224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001407055113219849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4270.027151091859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1048384403257128, dt = 0.001407055113219849 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.249000902703301e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014007764144373205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4114.5270839609875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1062454954389325, dt = 0.0014007764144373205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.249000902703301e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001394587731659414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4176.933487706704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.10764627185337, dt = 0.001394587731659414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.3877787807814457e-16,0)
sum a = (8.326672684688674e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001388488819231225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4161.133563614783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.109040859585029, dt = 0.001388488819231225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013824794181295159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3937.321636564319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1104293484042604, dt = 0.0013824794181295159 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013765592567162213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4185.832805799745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.11181182782239, dt = 0.0013765592567162213 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.249000902703301e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013707280514721363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3949.3724615598658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.113188387079106, dt = 0.0013707280514721363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.3183898417423734e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013649855077109178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4116.194013417814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1145591151305783, dt = 0.0013649855077109178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013593313202734615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.276e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3850.1661667242324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1159241006382894, dt = 0.0013593313202734615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013537651742028328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4053.984239163936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1172834319585627, dt = 0.0013537651742028328 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 277.80 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.1796119636642288e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013482867453998842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.293e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3768.376478612237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1186371971327658, dt = 0.0013482867453998842 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.249000902703301e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013428957012597586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4053.9207490738318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1199854838781658, dt = 0.0013428957012597586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 450.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 238.66 us (87.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.3183898417423734e-16,0)
sum a = (0,-1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013375917012894527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3952.1924194998564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1213283795794253, dt = 0.0013375917012894527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013323743977066886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4140.06840716052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.122665971280715, dt = 0.0013323743977066886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013272434360203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947.4153651346082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1239983456784217, dt = 0.0013272434360203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.249000902703301e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013221984555923823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3841.3760313166667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.125325589114442, dt = 0.0013221984555923823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.249000902703301e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001317239090182489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3942.490323855374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1266477875700343, dt = 0.001317239090182489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (61.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.1796119636642288e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.001312364968474109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4009.077141753099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.127965026660217, dt = 0.001312364968474109 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.1796119636642288e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013075757145837412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3870.5187573633784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.129277391628691, dt = 0.0013075757145837412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013028709485528344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3812.9862227713447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1305849673432746, dt = 0.0013028709485528344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012982502868228978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881.7704033195487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1318878382918274, dt = 0.0012982502868228978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012937133426940935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3877.486352484257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1331860885786504, dt = 0.0012937133426940935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.249000902703301e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012892597267676045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3893.2219936693004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1344798019213447, dt = 0.0012892597267676045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012848890473721242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3864.2208769119898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.135769061648112, dt = 0.0012848890473721242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3183898417423734e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012806009109747512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3811.9479125101752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1370539506954844, dt = 0.0012806009109747512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.00127639492257664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3827.538771768131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.138334551606459, dt = 0.00127639492257664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012722706860937192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3717.655114300893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.139610946529036, dt = 0.0012722706860937192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.249000902703301e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.001268227804722808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3777.0055671084738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1408832172151295, dt = 0.001268227804722808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.1796119636642288e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012642658812934558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3717.9770901127526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.142151445019852, dt = 0.0012642658812934558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012603845186058356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3794.1825205003493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1434157109011456, dt = 0.0012603845186058356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012565833197550088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3802.0649128381165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1446760954197512, dt = 0.0012565833197550088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3877787807814457e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012528618884418976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3762.704295471756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.145932678739506, dt = 0.0012528618884418976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012492198292712836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3711.7220809519404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.147185540627948, dt = 0.0012492198292712836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 264.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.249000902703301e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012456567480371497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3607.2502768301347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1484347604572194, dt = 0.0012456567480371497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012421722519956849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3740.1150575223155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1496804172052566, dt = 0.0012421722519956849 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 272.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012387659501262782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3540.9418929474978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1509225894572523, dt = 0.0012387659501262782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.3877787807814457e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012354374533807926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3750.1965015894516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1521613554073786, dt = 0.0012354374533807926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 276.62 us (96.9%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012321863749214506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3599.121523372535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1533967928607596, dt = 0.0012321863749214506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 460.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 252.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.5265566588595902e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012290123303476067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3571.0601669633684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.154628979235681, dt = 0.0012290123303476067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 255.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001225914937911733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3547.5303596495996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.155857991566029, dt = 0.001225914937911733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012228938187248963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3712.325122248948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.157083906503941, dt = 0.0012228938187248963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.3877787807814457e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012199485969520145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632.702564525204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.158306800322666, dt = 0.0012199485969520145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012170788999971854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3665.252037611521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.159526748919618, dt = 0.0012170788999971854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012142843586793553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3616.59574045754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.160743827819615, dt = 0.0012142843586793553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001211564607398609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3604.4149938082624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1619581121782945, dt = 0.001211564607398609 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001208919284293339 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3664.6369600233515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.163169676785693, dt = 0.001208919284293339 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.457167719820518e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012063480313885622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3541.504974384154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1643785960699864, dt = 0.0012063480313885622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012038504947356338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3671.513075610388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.165584944101375, dt = 0.0012038504947356338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012014263245436058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627.6248854702726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1667887945961106, dt = 0.0012014263245436058 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.457167719820518e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011990751753024817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3570.4666544135207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1679902209206543, dt = 0.0011990751753024817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.457167719820518e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011967967058985826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3568.4076603768517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.169189296095957, dt = 0.0011967967058985826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.3877787807814457e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011945905797222836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3588.9126819750013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1703860928018557, dt = 0.0011945905797222836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.3183898417423734e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011924564647683138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3451.914363665437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.171580683381578, dt = 0.0011924564647683138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.3877787807814457e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011903940337288628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3534.484317914248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1727731398463463, dt = 0.0011903940337288628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011884029640796788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3670.2387875296918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1739635338800753, dt = 0.0011884029640796788 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.3877787807814457e-16,0)
sum a = (0,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011864829381593885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3454.1437775258405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.175151936844155, dt = 0.0011864829381593885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011846336432422173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3550.57533495356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1763384197823146, dt = 0.0011846336432422173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.5%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 497.91 us (98.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011828547716043075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.456e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2928.154345988837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1775230534255567, dt = 0.0011828547716043075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.31 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.5265566588595902e-16,0)
sum a = (-2.7755575615628914e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011811460205838195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3542.020432064683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.178705908197161, dt = 0.0011811460205838195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 491.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.5265566588595902e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011795070926350025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3526.882288475639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.179887054217745, dt = 0.0011795070926350025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011779376953763893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.253e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3389.1690699164637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.18106656131038, dt = 0.0011779376953763893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011764375416333029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.272e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3334.2131919066683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.182244499005756, dt = 0.0011764375416333029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,1.5265566588595902e-16,0)
sum a = (-2.7755575615628914e-17,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011750063494748194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3474.4795468513494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1834209365473893, dt = 0.0011750063494748194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.5265566588595902e-16,0)
sum a = (0,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011736438422453492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3524.067550185908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.184595942896864, dt = 0.0011736438422453492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,1.5265566588595902e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011723497485909876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3452.660911643157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1857695867391094, dt = 0.0011723497485909876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001171123802480767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3540.1249603058895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1869419364877003, dt = 0.001171123802480767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0755285551056204e-16,1.5265566588595902e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011699657432229582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3496.5471878899034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1881130602901813, dt = 0.0011699657432229582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,1.457167719820518e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011688753154765526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3445.0865391510943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1892830260334044, dt = 0.0011688753154765526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011678522692580384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3565.7097571048853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.190451901348881, dt = 0.0011678522692580384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011668963599436029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3480.4495233139132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1916197536181388, dt = 0.0011668963599436029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,1.249000902703301e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001166007348266875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3460.1476828138393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1927866499780824, dt = 0.001166007348266875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001165185000312308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3489.4496302090774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1939526573263493, dt = 0.001165185000312308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.3877787807814457e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011644290875043217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3445.8061742955324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1951178423266615, dt = 0.0011644290875043217 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011637393865922823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3404.121961273995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.196282271414166, dt = 0.0011637393865922823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 247.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.457167719820518e-16,0)
sum a = (-1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011631156796314403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3377.4052324519366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1974460108007583, dt = 0.0011631156796314403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.74 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.457167719820518e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011625577539598857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3489.015582413991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1986091264803895, dt = 0.0011625577539598857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.457167719820518e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011620654021716385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.884780873126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1997716842343493, dt = 0.0011620654021716385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011616384220859133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3480.549015736882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.200933749636521, dt = 0.0011616384220859133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011612766167126737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3421.377436121107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.202095388058607, dt = 0.0011612766167126737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.3877787807814457e-16,0)
sum a = (8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011609797942145218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3402.6566404332843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2032566646753198, dt = 0.0011609797942145218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.3183898417423734e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011607477678649892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3453.7779838664524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2044176444695345, dt = 0.0011607477678649892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.72 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011605803560033054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3399.05704745362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2055783922373995, dt = 0.0011605803560033054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.3877787807814457e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011604773819856881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3440.713427646422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.206738972593403, dt = 0.0011604773819856881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.00116043867413321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3402.898910598632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2078994499753883, dt = 0.00116043867413321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 221.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (61.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.5265566588595902e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011604640656762998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3426.52306318344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2090598886495214, dt = 0.0011604640656762998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.5959455978986625e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011605533946959098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3385.3690257542353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2102203527151976, dt = 0.0011605533946959098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.6653345369377348e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011607065040614055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3362.3175254530443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2113809061098935, dt = 0.0011607065040614055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 281.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.6653345369377348e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011609232413651992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.270e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3289.041795325933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.212541612613955, dt = 0.0011609232413651992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001161203458854179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3476.202598020836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.21370253585532, dt = 0.001161203458854179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011615470133579462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3448.5899456643156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2148637393141746, dt = 0.0011615470133579462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011619537662139034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3480.186401479944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2160252863275325, dt = 0.0011619537662139034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011624235831892082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3480.7967393859035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2171872400937462, dt = 0.0011624235831892082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,1.8735013540549517e-16,0)
sum a = (-1.1102230246251565e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011629563343996134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3493.5329073039666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2183496636769355, dt = 0.0011629563343996134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.942890293094024e-16,0)
sum a = (-1.942890293094024e-16,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011635518942252167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3473.9224518497567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.219512620011335, dt = 0.0011635518942252167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011642101412231317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3367.476209174231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.22067617190556, dt = 0.0011642101412231317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011649309580370863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3477.9592323077763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2218403820467834, dt = 0.0011649309580370863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.8735013540549517e-16,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001165714231303969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3360.2377536621148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2230053130048204, dt = 0.001165714231303969 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.8735013540549517e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011665598515573157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3434.6492507937155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2241710272361246, dt = 0.0011665598515573157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011674677131277556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3503.0337094487436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2253375870876817, dt = 0.0011674677131277556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.734723475976807e-16,0)
sum a = (8.326672684688674e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011684377140404054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3508.0481735692347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2265050548008096, dt = 0.0011684377140404054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.8041124150158794e-16,0)
sum a = (8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011694697559092115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3475.5910460259506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.22767349251485, dt = 0.0011694697559092115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011705637438282463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3454.751223310911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2288429622707593, dt = 0.0011705637438282463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.6653345369377348e-16,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011717195862599446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3582.2039306904385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2300135260145875, dt = 0.0011717195862599446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.6653345369377348e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001172937194920272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3399.3842303545334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.231185245600847, dt = 0.001172937194920272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.6653345369377348e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001174216484660822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3532.9019754729943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2323581827957675, dt = 0.001174216484660822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 272.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.5265566588595902e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011755573733478223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3384.9280161007146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.233532399280428, dt = 0.0011755573733478223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.6653345369377348e-16,0)
sum a = (8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011769597817380471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3540.850274685018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.234707956653776, dt = 0.0011769597817380471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 280.53 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011784236333516086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.303e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3252.280837934571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.235884916435514, dt = 0.0011784236333516086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 249.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.6653345369377348e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011799488543416245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3479.7999884063056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2370633400688655, dt = 0.0011799488543416245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.02 us (97.0%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.5265566588595902e-16,0)
sum a = (-1.1102230246251565e-16,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011815353733607321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3384.670693943223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2382432889232073, dt = 0.0011815353733607321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.5265566588595902e-16,0)
sum a = (1.942890293094024e-16,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.001183183121424438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3470.196433066175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.239424824296568, dt = 0.001183183121424438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011848920317712747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3443.2894517910418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2406080074179924, dt = 0.0011848920317712747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.5959455978986625e-16,0)
sum a = (-1.1102230246251565e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011866620397197637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3461.2960954844784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.241792899449764, dt = 0.0011866620397197637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011884930825221231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.3740712873764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2429795614894834, dt = 0.0011884930825221231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001190385099214749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3591.4363538135567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2441680545720057, dt = 0.001190385099214749 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001192338030465401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3616.219418632775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2453584396712203, dt = 0.001192338030465401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.5265566588595902e-16,0)
sum a = (5.551115123125783e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011943518184170906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3621.4828833007336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2465507777016858, dt = 0.0011943518184170906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.457167719820518e-16,0)
sum a = (-8.326672684688674e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001196426406528651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3524.6346361569695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2477451295201027, dt = 0.001196426406528651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011985617394119465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3515.540752306328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2489415559266313, dt = 0.0011985617394119465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001200757762665712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3530.0411611434097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.250140117666043, dt = 0.001200757762665712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012030144227059883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3486.470180937303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.251340875428709, dt = 0.0012030144227059883 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 250.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.3877787807814457e-16,0)
sum a = (1.3877787807814457e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012053316665931377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3548.7122033999954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.252543889851415, dt = 0.0012053316665931377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 249.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.457167719820518e-16,0)
sum a = (-1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001207709441855397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3564.707766784796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.253749221518008, dt = 0.001207709441855397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.3877787807814457e-16,0)
sum a = (-1.3877787807814457e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012101476963089696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3602.668172569474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2549569309598634, dt = 0.0012101476963089696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012126463778746092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3542.1865589876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2561670786561723, dt = 0.0012126463778746092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.3877787807814457e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012152054343906819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3651.495309962061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.257379725034047, dt = 0.0012152054343906819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.3877787807814457e-16,0)
sum a = (5.551115123125783e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012178248134226883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3586.9399439227095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2585949304684374, dt = 0.0012178248134226883 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.249000902703301e-16,0)
sum a = (1.3877787807814457e-16,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.001220504462069214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3748.800180867216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.25981275528186, dt = 0.001220504462069214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.457167719820518e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012232443267642958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3597.3810750914486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.261033259743929, dt = 0.0012232443267642958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.5265566588595902e-16,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012260443530761839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3699.8062386695397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.262256504070693, dt = 0.0012260443530761839 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.5265566588595902e-16,0)
sum a = (1.1102230246251565e-16,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001228904485502478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3553.319742184534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2634825484237693, dt = 0.001228904485502478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.5265566588595902e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001231824667261623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3722.8530525147203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2647114529092716, dt = 0.001231824667261623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012348048400807532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3716.84586551156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2659432775765334, dt = 0.0012348048400807532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.457167719820518e-16,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012378449439798694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3711.345457884859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.267178082416614, dt = 0.0012378449439798694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012409449170523385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3672.833713009936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2684159273605937, dt = 0.0012409449170523385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012441046952417075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3711.422128113067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.269656872277646, dt = 0.0012441046952417075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 294.64 us (97.1%)
LB move op cnt : 0
LB apply : 1.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.5265566588595902e-16,0)
sum a = (1.1102230246251565e-16,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012473242121148296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3486.2976794767155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2709009769728876, dt = 0.0012473242121148296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.001250603398631296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3745.2466060859756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2721483011850023, dt = 0.001250603398631296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 275.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.001253942182909168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3602.818633648227 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2733989045836336, dt = 0.001253942182909168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.457167719820518e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012573404899870301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3773.000919784933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.274652846766543, dt = 0.0012573404899870301 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.3183898417423734e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012607982415823464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3665.2764035030696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.27591018725653, dt = 0.0012607982415823464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 222.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012643153558461507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3763.782818708525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2771709854981124, dt = 0.0012643153558461507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.3877787807814457e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012678917471140637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3616.4856764330298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2784353008539586, dt = 0.0012678917471140637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.457167719820518e-16,0)
sum a = (-1.1102230246251565e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012715273256536776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3855.75362023956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.279703192601073, dt = 0.0012715273256536776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 260.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.5265566588595902e-16,0)
sum a = (-1.1102230246251565e-16,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012752219974083013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3680.711434817202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2809747199267267, dt = 0.0012752219974083013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.5265566588595902e-16,0)
sum a = (1.1102230246251565e-16,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012789756637371164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.340e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3427.1664959626833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.282249941924135, dt = 0.0012789756637371164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.2%)
patch tree reduce : 701.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 243.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012827882211517549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3652.7203061711384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.283528917587872, dt = 0.0012827882211517549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.3877787807814457e-16,0)
sum a = (0,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012866595610493427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3754.3220253226204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2848117058090236, dt = 0.0012866595610493427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.3877787807814457e-16,0)
sum a = (0,1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012905895694420419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881.160114472763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.286098365370073, dt = 0.0012905895694420419 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.3183898417423734e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012945781266831425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3842.5620347271697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.287388954939515, dt = 0.0012945781266831425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6219664500383146e-16,1.3877787807814457e-16,0)
sum a = (-1.1102230246251565e-16,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.00129862510718974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3781.621154816495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.288683533066198, dt = 0.00129862510718974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393136847980827e-16,1.3877787807814457e-16,0)
sum a = (1.3877787807814457e-16,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013027303791620672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3875.6412445715196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.289982158173388, dt = 0.0013027303791620672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393136847980827e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013068938042995277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3825.5902676244114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.29128488855255, dt = 0.0013068938042995277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.3877787807814457e-16,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013111152375135083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3783.3611665574094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2925917823568494, dt = 0.0013111152375135083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 226.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393136847980827e-16,1.3877787807814457e-16,0)
sum a = (5.551115123125783e-17,-4.336808689942018e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013153945266370266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3857.428308897825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.293902897594363, dt = 0.0013153945266370266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 276.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.3877787807814457e-16,0)
sum a = (0,-3.0357660829594124e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013197315121313154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3842.677849795302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.295218292121, dt = 0.0013197315121313154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 233.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.5265566588595902e-16,0)
sum a = (-5.551115123125783e-17,-9.974659986866641e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001324126026789393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3874.8803686393285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2965380236331314, dt = 0.001324126026789393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.457167719820518e-16,0)
sum a = (0,9.107298248878237e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013285778954367528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3871.6160464135605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2978621496599207, dt = 0.0013285778954367528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.5265566588595902e-16,0)
sum a = (0,3.957337929572091e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013330869346292312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4028.2688484592813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2991907275553576, dt = 0.0013330869346292312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.5265566588595902e-16,0)
sum a = (-1.1102230246251565e-16,-3.2526065174565133e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013376529523481855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3790.421228912068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3005238144899867, dt = 0.0013376529523481855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.5959455978986625e-16,0)
sum a = (-1.1102230246251565e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013422757476930767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4044.7234182895236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3018614674423348, dt = 0.0013422757476930767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013469551105715946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3897.7562916127176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3032037431900276, dt = 0.0013469551105715946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.001351690821387429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3995.522807059339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3045506983005994, dt = 0.001351690821387429 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.6653345369377348e-16,0)
sum a = (8.326672684688674e-17,-9.540979117872439e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013564826507258428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3988.6939490272252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3059023891219868, dt = 0.0013564826507258428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001361330359037185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3901.834880306751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3072588717727127, dt = 0.001361330359037185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013662336963184822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3960.931535845398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.30862020213175, dt = 0.0013662336963184822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6609977282477928e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013711924017932877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3997.630983612269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.309986435828068, dt = 0.0013711924017932877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.89 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6523241108679088e-16,1.734723475976807e-16,0)
sum a = (0,-2.949029909160572e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013762062035899453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3984.0137579595525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3113576282298616, dt = 0.0013762062035899453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6523241108679088e-16,1.734723475976807e-16,0)
sum a = (-1.942890293094024e-16,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013812748184184444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.321e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3751.1639865620114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3127338344334514, dt = 0.0013812748184184444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6566609195578508e-16,1.734723475976807e-16,0)
sum a = (-8.326672684688674e-17,5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001386397951246052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4126.520578960891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.31411510925187, dt = 0.001386397951246052 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6544925152128798e-16,1.6653345369377348e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001391575294971926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3985.6519261216104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3155015072031158, dt = 0.001391575294971926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6436504934880247e-16,1.6653345369377348e-16,0)
sum a = (-8.326672684688674e-17,-4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013968065301009057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4107.73893227766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.316893082498088, dt = 0.0013968065301009057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6425662913155392e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014020913244166845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4103.895787450632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.318289889028189, dt = 0.0014020913244166845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.636603179366869e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,-4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014074293326546091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4149.515516838892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3196919803526055, dt = 0.0014074293326546091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6437860187595854e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001412820196174319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4058.7117669753047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.32109940968526, dt = 0.001412820196174319 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.650968858152302e-16,1.8041124150158794e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014182635426324727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4202.5185486357495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3225122298814345, dt = 0.0014182635426324727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.27 us (96.8%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6295558652457132e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014237589856558163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.285e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3974.1154149534823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3239304934240668, dt = 0.0014237589856558163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6382294826255972e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001429306124514854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4305.776995141016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3253542524097224, dt = 0.001429306124514854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 278.40 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-16,1.734723475976807e-16,0)
sum a = (0,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014349045437983827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4055.980508168692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3267835585342374, dt = 0.0014349045437983827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6219664500383146e-16,1.8041124150158794e-16,0)
sum a = (1.1102230246251565e-16,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014405538130891902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4299.783213310552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3282184630780356, dt = 0.0014405538130891902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 275.40 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6263032587282567e-16,1.8735013540549517e-16,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014462534866411844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4157.639111615094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.329659016891125, dt = 0.0014462534866411844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6046192152785466e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.001452003103058272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4358.581107509954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.331105270377766, dt = 0.001452003103058272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6046192152785466e-16,1.942890293094024e-16,0)
sum a = (-1.6653345369377348e-16,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.00145780218497529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4318.035782827997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.332557273480824, dt = 0.00145780218497529 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5872719805187785e-16,1.8735013540549517e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014636502387413073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4414.487035530679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3340150756657994, dt = 0.0014636502387413073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (60.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014695467541056312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4330.771043597268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3354787259045406, dt = 0.0014695467541056312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 223.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5655879370690684e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014754912039068558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4459.7865814282395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3369482726586464, dt = 0.0014754912039068558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5525775109992423e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014814830437652985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4345.843724485611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3384237638625534, dt = 0.0014814830437652985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5525775109992423e-16,1.942890293094024e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014875217117791908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4398.49584594538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.339905246906319, dt = 0.0014875217117791908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,1.942890293094024e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014936066282249803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4320.119979319461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.341392768618098, dt = 0.0014936066282249803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5352302762394743e-16,1.8735013540549517e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014997371952621282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4398.152935131694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.342886375246323, dt = 0.0014997371952621282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5352302762394743e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015059127966427872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4496.832012179939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.344386112441585, dt = 0.0015059127966427872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5352302762394743e-16,1.8735013540549517e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.00151213279742675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4560.101735046948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3458920252382276, dt = 0.00151213279742675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 781.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5352302762394743e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015183965437020807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4407.736562034464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3474041580356544, dt = 0.0015183965437020807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001524703362311824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4581.644811857375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3489225545793566, dt = 0.001524703362311824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5699247457590104e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001531052560587231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4611.211123096721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3504472579416684, dt = 0.001531052560587231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015374434260879118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4590.732244892308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.351978310502256, dt = 0.0015374434260879118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 236.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5092094240998222e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015438752263493634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4488.321690230735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3535157539283436, dt = 0.0015438752263493634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5092094240998222e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001550347208638299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4617.542175413079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.355059629154693, dt = 0.001550347208638299 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5525775109992423e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001556858599716238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4682.185966233628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3566099763633312, dt = 0.001556858599716238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001563408605611809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4460.706970689396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3581668349630474, dt = 0.001563408605611809 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015699964114022206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4686.691270502256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3597302435686593, dt = 0.0015699964114022206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 272.34 us (97.0%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0122792321330962e-16,0)
sum a = (-8.326672684688674e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015766211810043624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4518.9614368667135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3613002399800616, dt = 0.0015766211810043624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5092094240998222e-16,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015832820569760243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4690.653587896264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.362876861161066, dt = 0.0015832820569760243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.15 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.942890293094024e-16,0)
sum a = (-1.1102230246251565e-16,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015899781603276725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4646.829826042889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.364460143218042, dt = 0.0015899781603276725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015967085903453048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4770.920471213735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3660501213783696, dt = 0.0015967085903453048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 260.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016034724244248192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4501.377414487897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.367646829968715, dt = 0.0016034724244248192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.16 us (97.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016102687179184124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4668.226969958659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3692503023931395, dt = 0.0016102687179184124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5092094240998222e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016170965039934797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4660.638475291551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.370860571111058, dt = 0.0016170965039934797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.001623954793504494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.231e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4729.7737416024365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3724776676150516, dt = 0.001623954793504494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001630842574878363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.249e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4682.518923637975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3741016224085563, dt = 0.001630842574878363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8735013540549517e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016377588140137414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4793.188884993596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3757324649834346, dt = 0.0016377588140137414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.0122792321330962e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016447024541947851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4868.269292432684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3773702237974486, dt = 0.0016447024541947851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016516724160198254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4901.358121403179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.379014926251643, dt = 0.0016516724160198254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016586675973454482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4922.292208692022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.380666598667663, dt = 0.0016586675973454482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016656868732464428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4878.163100778399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3823252662650085, dt = 0.0016656868732464428 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785983631388945e-16,2.0122792321330962e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001672729095992108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4964.756603439614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.383990953138255, dt = 0.001672729095992108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 234.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.942890293094024e-16,0)
sum a = (-1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016797930950393578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4955.659257297373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.385663682234247, dt = 0.0016797930950393578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5439038936193583e-16,2.0122792321330962e-16,0)
sum a = (-8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016868776770431117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5063.545053887752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.387343475329286, dt = 0.0016868776770431117 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.942890293094024e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016939816258843973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5050.834412369339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.389030353006329, dt = 0.0016939816258843973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.8735013540549517e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001701103702716621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5087.456288632543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3907243346322136, dt = 0.001701103702716621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.83 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.474514954580286e-16,1.942890293094024e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017082426460304468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4934.112178044423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3924254383349304, dt = 0.0017082426460304468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5092094240998222e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017153971717376866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5229.6744297095365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.394133680980961, dt = 0.0017153971717376866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017225659732746357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5022.642871642116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3958490781526987, dt = 0.0017225659732746357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (0,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017297477217252453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5030.597372758333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.397571644125973, dt = 0.0017297477217252453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017369410659645141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5214.4375894621535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.399301391847698, dt = 0.0017369410659645141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.8735013540549517e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017441446328224867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5111.840918246561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4010383329136626, dt = 0.0017441446328224867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017513570272691952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5097.511270976821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.402782477546485, dt = 0.0017513570272691952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017585768326209162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5221.4068309078975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4045338345737544, dt = 0.0017585768326209162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017658026107680279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5291.264769348093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4062924114063753, dt = 0.0017658026107680279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001773032902424813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5323.974464883853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.408058214017143, dt = 0.001773032902424813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.17 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8041124150158794e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001780266227401466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.289e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4951.149878123461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.409831246919568, dt = 0.001780266227401466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017875010848985781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5427.149147769703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4116115131469695, dt = 0.0017875010848985781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 271.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001794735953824354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5108.264910119106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.413399014231868, dt = 0.001794735953824354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.734723475976807e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018019692931347732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5434.9704858105315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4151937501856926, dt = 0.0018019692931347732 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.30 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,1.8735013540549517e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018091995421968892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5172.857707535573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.416995719478827, dt = 0.0018091995421968892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.8735013540549517e-16,0)
sum a = (0,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018164251211754603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5523.692463141112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.418804919021024, dt = 0.0018164251211754603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.8735013540549517e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018236444314430353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5265.801668878482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4206213441421993, dt = 0.0018236444314430353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018308558560136408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5506.505318687829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4224449885736425, dt = 0.0018308558560136408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0122792321330962e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.001838057760000148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5394.769390277508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.424275844429656, dt = 0.001838057760000148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018452484910953955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5417.418191107267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4261139021896563, dt = 0.0018452484910953955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018524263800771053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5512.1260133191145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.427959150680752, dt = 0.0018524263800771053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.1510571102112408e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018595897413365935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5421.206848338031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.429811577060829, dt = 0.0018595897413365935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.1510571102112408e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018667368734312613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5418.345557904133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4316711668021656, dt = 0.0018667368734312613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.1510571102112408e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018738660596608165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5633.447963277118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.433537903675597, dt = 0.0018738660596608165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.50 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018809755686671255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5283.597632439255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4354117697352575, dt = 0.0018809755686671255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.1510571102112408e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018880636550575947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5467.3120857148115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4372927453039246, dt = 0.0018880636550575947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0816681711721685e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018951285600519166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5533.030477698931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4391808089589824, dt = 0.0018951285600519166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019021685121520054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5587.959604452126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.441075937519034, dt = 0.0019021685121520054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019091817278348983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5403.764152925176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.442978106031186, dt = 0.0019091817278348983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019161664122683715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5706.800962007796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.444887287759021, dt = 0.0019161664122683715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019231207600489734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5585.685805063845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4468034541712895, dt = 0.0019231207600489734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.0122792321330962e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019300429559621745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5807.55664434456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4487265749313387, dt = 0.0019300429559621745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019369311757642309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5838.270271500269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.450656617887301, dt = 0.0019369311757642309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019437835869854174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5733.331441738603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.452593549063065, dt = 0.0019437835869854174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.8735013540549517e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019505983497541612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5818.753160364064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4545373326500504, dt = 0.0019505983497541612 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.942890293094024e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001957373617641617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5767.801440781109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4564879309998044, dt = 0.001957373617641617 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.0122792321330962e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001964107538526195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5744.857888548774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.458445304617446, dt = 0.001964107538526195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 278.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019707982554774766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.267e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5580.084345931688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4604094121559723, dt = 0.0019707982554774766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.942890293094024e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019774439076589647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.866405044657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4623802104114496, dt = 0.0019774439076589647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 269.98 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001984042631249047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5661.7969120279195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4643576543191084, dt = 0.001984042631249047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001990592560379522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5877.575743421624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4663416969503573, dt = 0.001990592560379522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.942890293094024e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001997091828091028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5807.728704336734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.468332289510737, dt = 0.001997091828091028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.942890293094024e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020035385673046165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5866.5573635224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.470329381338828, dt = 0.0020035385673046165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002009930911808781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5908.58429871553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.472332919906133, dt = 0.002009930911808781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002016266997261098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6086.949188304522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4743428508179415, dt = 0.002016266997261098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020225449622037106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5831.453018688412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4763591178152025, dt = 0.0020225449622037106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 223.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.942890293094024e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020287629490917778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6106.774220385284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.478381662777406, dt = 0.0020287629490917778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020349191053340397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6182.645375451748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4804104257264976, dt = 0.0020349191053340397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020410115843445546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5999.849939804635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4824453448318318, dt = 0.0020410115843445546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002047038546604718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6108.176613421516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4844863564161765, dt = 0.002047038546604718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020529981607345423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6234.429462798591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4865333949627813, dt = 0.0020529981607345423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020588886045722725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6072.791210963993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4885863931235157, dt = 0.0020588886045722725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002064708066261256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6171.497184824527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.490645281728088, dt = 0.002064708066261256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020704547453430744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6059.887588877484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4927099897943497, dt = 0.0020704547453430744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0122792321330962e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020761268538558413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6059.527622625289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4947804445396926, dt = 0.0020761268538558413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (1.3%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002081722617436609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6150.874418169901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4968565713935487, dt = 0.002081722617436609 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002087240276426757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6187.760900554928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.498938294010985, dt = 0.002087240276426757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020926780869792447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6234.7399919650425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.501025534287412, dt = 0.0020926780869792447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020980343221665963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6193.981926199211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.503118212374391, dt = 0.0020980343221665963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.002103307273088456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6129.61475456114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5052162466965577, dt = 0.002103307273088456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002108495249977545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6080.841324469297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.507319553969646, dt = 0.002108495249977545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 232.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.1510571102112408e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021135965833028415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6293.99479597013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5094280492196237, dt = 0.0021135965833028415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0816681711721685e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021186096248688004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6014.959399251093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5115416458029265, dt = 0.0021186096248688004 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002123532748909403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6372.035083836291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.513660255427795, dt = 0.002123532748909403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 252.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0816681711721685e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021283643531758456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.093460165023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5157837881767047, dt = 0.0021283643531758456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.1510571102112408e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021331028600166447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6298.675235299232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5179121525298807, dt = 0.0021331028600166447 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 293.33 us (97.1%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.1510571102112408e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002137746717448976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6013.605919076875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5200452553898973, dt = 0.002137746717448976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 230.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0816681711721685e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002142294400220002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6391.509021673239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5221830021073464, dt = 0.002142294400220002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021467444108570098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6217.268009712547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.524325296507566, dt = 0.0021467444108570098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 227.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002151095280705145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6487.608997273619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5264720409184234, dt = 0.002151095280705145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002155345570951543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6222.25356716654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5286231361991285, dt = 0.002155345570951543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021594938736346583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6126.878260985872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.53077848177008, dt = 0.0021594938736346583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021635388126376486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6443.55219836202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5329379756437147, dt = 0.0021635388126376486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021674790446645983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6361.171890909513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5351015144563522, dt = 0.0021674790446645983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002171313260198459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6496.346808860488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5372689935010166, dt = 0.002171313260198459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021750401844395674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6413.73584753735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.539440306761215, dt = 0.0021750401844395674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021786585782236174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6470.915848230028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5416153469456546, dt = 0.0021786585782236174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021821672389179757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6510.195361041128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5437940055238784, dt = 0.0021821672389179757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021855650012952976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6283.706632536849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5459761727627965, dt = 0.0021855650012952976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021888507383833484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.245e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6319.873542562229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.548161737764092, dt = 0.0021888507383833484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021920233622900577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6535.925955443828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.550350588502475, dt = 0.0021920233622900577 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021950818250027356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6688.974400607087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.552542611864765, dt = 0.0021950818250027356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002198025119160575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6489.173264822509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5547376936897677, dt = 0.002198025119160575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002200852278799399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6449.851307372779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.556935718808928, dt = 0.002200852278799399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022035623800678627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6620.559240399383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5591365710877274, dt = 0.0022035623800678627 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002206154541914124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6663.411382769753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5613401334677954, dt = 0.002206154541914124 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022086279267422553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6626.581187697299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5635462880097095, dt = 0.0022086279267422553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002210981741037532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6506.894371814191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5657549159364517, dt = 0.002210981741037532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8735013540549517e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022132152359598685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6631.215581048538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5679658976774893, dt = 0.0022132152359598685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.81 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002215327707904685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6309.750898407849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5701791129134492, dt = 0.002215327707904685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.9081958235744878e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002217318499030554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6576.562031008401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.572394440621354, dt = 0.002217318499030554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.9081958235744878e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022191869977529377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.261e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6332.451649134578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5746117591203848, dt = 0.0022191869977529377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022209326392035105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6691.402762731326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.576830946118138, dt = 0.0022209326392035105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 282.82 us (97.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9081958235744878e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002222554905654466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6316.720588374939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5790518787573413, dt = 0.002222554905654466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8388068845354155e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022240533269073486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6447.74814703829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.581274433662996, dt = 0.0022240533269073486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.8388068845354155e-16,0)
sum a = (1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022254274806459496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6416.196514439344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.583498486989903, dt = 0.0022254274806459496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9081958235744878e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002226676992752882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6455.405367774954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5857239144705493, dt = 0.002226676992752882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.8735013540549517e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022278015375894844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6625.2566687497565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.587950591463302, dt = 0.0022278015375894844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.9081958235744878e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002228800838238735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6560.316671224602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5901783930008917, dt = 0.002228800838238735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8388068845354155e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.00222967466671097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6791.391772018466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5924071938391307, dt = 0.00222967466671097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8388068845354155e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002230422844112154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6709.959072438918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5946368685058414, dt = 0.002230422844112154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (0.7%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 374.30 us (97.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8388068845354155e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022310452407746147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6008.925048458731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5968672913499535, dt = 0.0022310452407746147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8388068845354155e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022315417763500833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6755.210477267871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5990983365907283, dt = 0.0022315417763500833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.8041124150158794e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022319124198650394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6741.093936586452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6013298783670784, dt = 0.0022319124198650394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022321571897383555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.238e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6487.991763333189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6035617907869435, dt = 0.0022321571897383555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.7694179454963432e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002232276153761283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6468.604205083975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.605793947976682, dt = 0.002232276153761283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.7694179454963432e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022322694290398955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.266e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6348.030628381882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6080262241304433, dt = 0.0022322694290398955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.6653345369377348e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002232137181900145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6405.190632920535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.610258493559483, dt = 0.002232137181900145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.734723475976807e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022318796277557566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6497.054832381178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6124906307413833, dt = 0.0022318796277557566 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 239.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.7694179454963432e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002231497030939158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6658.319005242884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.614722510369139, dt = 0.002231497030939158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022309897044958376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6498.296685391043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.616954007400078, dt = 0.0022309897044958376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.734723475976807e-16,0)
sum a = (8.326672684688674e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022303580099423915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6749.0197222810575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6191849971045738, dt = 0.0022303580099423915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.4%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 267.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.700029006457271e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002229602356988736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6386.090321307339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6214153551145163, dt = 0.002229602356988736 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.700029006457271e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022287232032248785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6707.436977170299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.623644957471505, dt = 0.0022287232032248785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 235.95 us (88.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.7694179454963432e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022277210537727673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6431.730356761163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.62587368067473, dt = 0.0022277210537727673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8388068845354155e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022265964609037496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6732.495522257645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6281014017285025, dt = 0.0022265964609037496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022253500236222024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6549.037842191887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.630327998189406, dt = 0.0022253500236222024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8041124150158794e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022239823872159995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6497.456645860715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6325533482130283, dt = 0.0022239823872159995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8388068845354155e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002222494242774408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6725.7757871982085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.634777330600244, dt = 0.002222494242774408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8735013540549517e-16,0)
sum a = (-6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002220886326674205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6786.391620161146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6369998248430186, dt = 0.002220886326674205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.942890293094024e-16,0)
sum a = (3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022191594200346543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6702.825662806987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.639220711169693, dt = 0.0022191594200346543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022173143481422205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6404.598043520587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6414398705897275, dt = 0.0022173143481422205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.97758476261356e-16,0)
sum a = (1.457167719820518e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022153519798457522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6594.11812358129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6436571849378696, dt = 0.0022153519798457522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.97758476261356e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.00221327322692302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6485.3331702456435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6458725369177154, dt = 0.00221327322692302 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0122792321330962e-16,0)
sum a = (3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022110790434194854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6546.504711526837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6480858101446385, dt = 0.0022110790434194854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 227.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0469737016526324e-16,0)
sum a = (-6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022087704249601848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6690.760947504627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.650296889188058, dt = 0.0022087704249601848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.97758476261356e-16,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022063484080356898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6616.51882701657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.652505659613018, dt = 0.0022063484080356898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0122792321330962e-16,0)
sum a = (4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022038140692630975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6590.634098945531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.654712008021054, dt = 0.0022038140692630975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0816681711721685e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022011685246230246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6557.934923757204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6569158220903173, dt = 0.0022011685246230246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.1163626406917047e-16,0)
sum a = (2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002198412928673639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.391e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.668263033884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6591169906149403, dt = 0.002198412928673639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.1510571102112408e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002195548473742745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6440.998345637387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.661315403543614, dt = 0.002195548473742745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1163626406917047e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021925763890989682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6431.867880572166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.663510952017357, dt = 0.0021925763890989682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 222.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0816681711721685e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002189497940103133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6600.47329820363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.665703528406456, dt = 0.002189497940103133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 259.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0643209364124004e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021863144273408797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6463.520855351117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.667893026346559, dt = 0.0021863144273408797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1163626406917047e-16,0)
sum a = (6.591949208711867e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002183027185737662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6472.838349873447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6700793407739, dt = 0.002183027185737662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 276.75 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1684043449710089e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021796375836571867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.260e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6238.388990839223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.672262367959638, dt = 0.0021796375836571867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.237793284010081e-16,0)
sum a = (-1.734723475976807e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021761470219844583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6503.220906894221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.674442005543295, dt = 0.0021761470219844583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 287.67 us (97.0%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.3245294578089215e-16,0)
sum a = (-5.204170427930421e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.00217255693319452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.269e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6172.338295239994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6766181525652795, dt = 0.00217255693319452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.3245294578089215e-16,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002168868780408053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6356.894346730825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.678790709498474, dt = 0.002168868780408053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 260.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.220446049250313e-16,0)
sum a = (-6.245004513516506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021650840564349464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6294.639598284913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.680959578278882, dt = 0.0021650840564349464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021612042828069947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6288.177252240837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.683124662335317, dt = 0.0021612042828069947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.3765711620882257e-16,0)
sum a = (1.734723475976807e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002157231008800855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6470.036555049637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6852858666181243, dt = 0.002157231008800855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.3071822230491534e-16,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002153165810452396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6473.246605587905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6874430976269252, dt = 0.002153165810452396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.255140518769849e-16,0)
sum a = (3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021490102895635917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6521.056201903154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6895962634373776, dt = 0.0021490102895635917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1163626406917047e-16,0)
sum a = (7.979727989493313e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021447660727030708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6165.105721628791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.691745273726941, dt = 0.0021447660727030708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (5.204170427930421e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021404348102014624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6333.079770674408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.693890039799644, dt = 0.0021404348102014624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.203098814490545e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002136018175142633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6279.165064103303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6960304746098456, dt = 0.002136018175142633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3071822230491534e-16,0)
sum a = (1.1622647289044608e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002131517862351944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6356.876373226448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.698166492784988, dt = 0.002131517862351944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2724877535296173e-16,0)
sum a = (5.204170427930421e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021269355873826112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6403.946041249665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.70029801064734, dt = 0.0021269355873826112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.203098814490545e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002122273085501239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6228.326938156856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7024249462347227, dt = 0.002122273085501239 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.1337098754514727e-16,0)
sum a = (1.0928757898653885e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021175321106736227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6246.439947973029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.704547219320224, dt = 0.0021175321106736227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1163626406917047e-16,0)
sum a = (9.367506770274758e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002112714434551833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6077.227045861156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7066647514308975, dt = 0.002112714434551833 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.0816681711721685e-16,0)
sum a = (6.071532165918825e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002107821845463657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.257e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6049.001053307405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7087774658654493, dt = 0.002107821845463657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0296264668928643e-16,0)
sum a = (7.979727989493313e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021028561474053745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6290.36250371517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.710885287710913, dt = 0.0021028561474053745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.74 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0643209364124004e-16,0)
sum a = (3.9898639947466563e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.002097819159038889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.240e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6106.7554417547335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7129881438583183, dt = 0.002097819159038889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.1163626406917047e-16,0)
sum a = (4.423544863740858e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020927127126941785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6198.125147247708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.715085963017357, dt = 0.0020927127126941785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.1250362580715887e-16,0)
sum a = (3.642919299551295e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020875386533780143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6206.918915954388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7171786757300516, dt = 0.0020875386533780143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0816681711721685e-16,0)
sum a = (1.3617579286417936e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002082298837789894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6098.351773164058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7192662143834294, dt = 0.002082298837789894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0122792321330962e-16,0)
sum a = (-2.168404344971009e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002076995133346069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6193.104242106783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.721348513221219, dt = 0.002076995133346069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 221.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0036056147532122e-16,0)
sum a = (2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020716294172125637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6653.712381944068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7234255083545653, dt = 0.0020716294172125637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9255430583342559e-16,0)
sum a = (3.0574501264091225e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020662035753480404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6361.239160592387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.725497137771778, dt = 0.0020662035753480404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.97758476261356e-16,0)
sum a = (4.9439619065339e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020607195015573247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6476.9185173004225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.727563341347126, dt = 0.0020607195015573247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.97758476261356e-16,0)
sum a = (8.42425088021237e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002055179096556402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6464.0672509304695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7296240608486833, dt = 0.002055179096556402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8995222061946038e-16,0)
sum a = (1.0408340855860843e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020495842670496573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6043.123746314691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.73167923994524, dt = 0.0020495842670496573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8214596497756474e-16,0)
sum a = (4.597017211338539e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020439369248200817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6188.363484418823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7337288242122897, dt = 0.0020439369248200817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8908485888147197e-16,0)
sum a = (-1.3010426069826053e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002038238985833193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6134.612247386551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7357727611371097, dt = 0.002038238985833193 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.8821749714348357e-16,0)
sum a = (6.548581121812447e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020324923693553145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6523.849292816404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7378110001229428, dt = 0.0020324923693553145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.717376241217039e-16,0)
sum a = (5.204170427930421e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002026698997086905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.526480202137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.739843492492298, dt = 0.002026698997086905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.691355389077387e-16,0)
sum a = (8.673617379884035e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002020860792311517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6181.07515572135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.741870191489385, dt = 0.002020860792311517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.01 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.7607443281164592e-16,0)
sum a = (1.214306433183765e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020149796790610197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6211.879729670744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7438910522816964, dt = 0.0020149796790610197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.8084492237058214e-16,0)
sum a = (2.688821387764051e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020090575812976206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6309.7980693072905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7459060319607573, dt = 0.0020090575812976206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9168694409543718e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002003096422113214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6301.854841810267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.747915089542055, dt = 0.002003096422113214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0166160408230382e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001997098122946564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6098.273236651109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.749918185964168, dt = 0.001997098122946564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.938553484404082e-16,0)
sum a = (7.112366251504909e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019910646028187943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6165.838994372041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7519152840871146, dt = 0.0019910646028187943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.8713329497099807e-16,0)
sum a = (8.673617379884035e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019849977775875916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6167.776889698212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7539063486899336, dt = 0.0019849977775875916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8453120975703285e-16,0)
sum a = (3.122502256758253e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019788995592205537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6186.631112673111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.755891346467521, dt = 0.0019788995592205537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8669961410200386e-16,0)
sum a = (-2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019727718550880432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6153.751758434579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7578702460267417, dt = 0.0019727718550880432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8984380040221183e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019666165672758843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6066.707223962246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.75984301788183, dt = 0.0019666165672758843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.73 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.9038590148845458e-16,0)
sum a = (-1.734723475976807e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019604355919182093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5910.6908940424755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7618096344491057, dt = 0.0019604355919182093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.8306753682417742e-16,0)
sum a = (-3.122502256758253e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.00195423081855075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6156.969701725115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7637700700410237, dt = 0.00195423081855075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8165976806584078e-16,0)
sum a = (-1.1449174941446927e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019480041294848037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5775.402066255848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7657243008595747, dt = 0.0019480041294848037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.7970651008947236e-16,0)
sum a = (-4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.001941757399202087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6016.701756708197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7676723049890595, dt = 0.001941757399202087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8171228410857054e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019354924937706934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6127.334468570621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7696140623882615, dt = 0.0019354924937706934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8583225236401546e-16,0)
sum a = (9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019292112702822845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6075.712557092017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.771549554882032, dt = 0.0019292112702822845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8214596497756474e-16,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019229155763106505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6011.252400131755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7734787661523144, dt = 0.0019229155763106505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.964574336543734e-16,0)
sum a = (-1.734723475976807e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019166072493917443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6058.727526215853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.775401681728625, dt = 0.0019166072493917443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.938553484404082e-16,0)
sum a = (1.734723475976807e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019102881165252673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5838.227102068301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.777318288978017, dt = 0.0019102881165252673 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.92 us (8.5%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 241.55 us (89.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.8301332671555315e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.00190395999369783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5777.396463592991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.779228577094542, dt = 0.00190395999369783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.8474805019152996e-16,0)
sum a = (5.204170427930421e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018976246854277205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.393891637837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.78113253708824, dt = 0.0018976246854277205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.8561541192951836e-16,0)
sum a = (7.632783294297951e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001891283984331275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5666.505915423391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.783030161773668, dt = 0.001891283984331275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.9038590148845458e-16,0)
sum a = (-7.979727989493313e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001884939670710793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5834.640046063211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.784921445757999, dt = 0.001884939670710793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 282.11 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.9168694409543718e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001878593512163952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5640.679708330165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7868063854287097, dt = 0.001878593512163952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.8561541192951836e-16,0)
sum a = (5.898059818321144e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018722472632146407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5878.457977967291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7886849789408736, dt = 0.0018722472632146407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.7737547541862853e-16,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018659026649650626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5853.297948483595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.790557226204088, dt = 0.0018659026649650626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.7520707107365752e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001859561444769031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5825.408655725872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.792423128869053, dt = 0.001859561444769031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8214596497756474e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.00185322531592624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5873.376084886187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.794282690313822, dt = 0.00185322531592624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.7433970933566911e-16,0)
sum a = (1.0061396160665481e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018468959773973645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5686.954733851257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.796135915629748, dt = 0.0018468959773973645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.6566609195578508e-16,0)
sum a = (-6.591949208711867e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018405751135397747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5762.610879330857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7979828116071452, dt = 0.0018405751135397747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.6132928326584306e-16,0)
sum a = (2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018342643938636326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.243e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5330.309485085339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.799823386720685, dt = 0.0018342643938636326 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.5785983631388945e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018279654728081348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 2.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5734.898876364562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.801657651114549, dt = 0.0018279654728081348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.11 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.5612511283791264e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018216799895376219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5616.108984091559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.803485616587357, dt = 0.0018216799895376219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 370.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.5959455978986625e-16,0)
sum a = (7.632783294297951e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018154095677572716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5749.077955923566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8053072965768946, dt = 0.0018154095677572716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.6132928326584306e-16,0)
sum a = (6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.001809155815548068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5769.829596173187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8071227061446518, dt = 0.001809155815548068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.6740081543176188e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001802920325220718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5643.578894442038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8089318619602, dt = 0.001802920325220718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.6306400674181987e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001796704673188166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5562.990244361883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8107347822854205, dt = 0.001796704673188166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.6219664500383146e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001790510419856341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5489.086829336458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.812531486958609, dt = 0.001790510419856341 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.6046192152785466e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017843391095327713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5557.676366676922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8143219973784652, dt = 0.0017843391095327713 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 280.69 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6219664500383146e-16,0)
sum a = (2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017781922703526277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5383.884935562204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.816106336487998, dt = 0.0017781922703526277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.717376241217039e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001772071414221819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5582.660959670717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8178845287583507, dt = 0.001772071414221819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6306400674181987e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017659780367766831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5200.278369972234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8196566001725727, dt = 0.0017659780367766831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.682681771697503e-16,0)
sum a = (9.020562075079397e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017599136173598146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5589.7370149681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8214225782093494, dt = 0.0017599136173598146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.37 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6306400674181987e-16,0)
sum a = (-6.938893903907228e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017538796190115814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5467.706947673075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.823182491826709, dt = 0.0017538796190115814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.6306400674181987e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017478774884768305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5568.259718659142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.824936371445721, dt = 0.0017478774884768305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6306400674181987e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017419086562262798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5472.668189727408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.826684248934198, dt = 0.0017419086562262798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6653345369377348e-16,0)
sum a = (-7.632783294297951e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001735974536492087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5293.102755841742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.828426157590424, dt = 0.001735974536492087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.682681771697503e-16,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017300765273170562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5364.30195187672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.830162132126916, dt = 0.0017300765273170562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.6479873021779667e-16,0)
sum a = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017242160106169236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5413.721541487632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8318922086542333, dt = 0.0017242160106169236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.6653345369377348e-16,0)
sum a = (4.163336342344337e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017183943522551758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5463.757005081514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.83361642466485, dt = 0.0017183943522551758 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.6653345369377348e-16,0)
sum a = (-3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017126129021297818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5323.255992639808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8353348190171053, dt = 0.0017126129021297818 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.6479873021779667e-16,0)
sum a = (-2.0816681711721685e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017068729942712763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5316.114609829994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.837047431919235, dt = 0.0017068729942712763 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.734723475976807e-16,0)
sum a = (-7.632783294297951e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.00170117594695154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5293.678144142763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.838754304913506, dt = 0.00170117594695154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.6479873021779667e-16,0)
sum a = (6.938893903907228e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016955230628026635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5319.485659933781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8404554808604576, dt = 0.0016955230628026635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.7520707107365752e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016899156289452279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.616420442161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8421510039232603, dt = 0.0016899156289452279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.6479873021779667e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016843549171253315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5145.5581096512105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8438409195522056, dt = 0.0016843549171253315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 229.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.717376241217039e-16,0)
sum a = (9.020562075079397e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016788421838596637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5396.070467359063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.845525274469331, dt = 0.0016788421838596637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 287.05 us (97.0%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.7520707107365752e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016733786705879269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4972.129191664944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8472041166531907, dt = 0.0016733786705879269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.700029006457271e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001667965603831845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5175.771459552524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8488774953237788, dt = 0.001667965603831845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.717376241217039e-16,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016626041953600353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5132.215017469824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8505454609276106, dt = 0.0016626041953600353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.734723475976807e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016572956423579349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5213.5279333477865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8522080651229706, dt = 0.0016572956423579349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.682681771697503e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016520411276019949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5102.445757904177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8538653607653286, dt = 0.0016520411276019949 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.7694179454963432e-16,0)
sum a = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016468418196373146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5214.076797153143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.855517401892931, dt = 0.0016468418196373146 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.8214596497756474e-16,0)
sum a = (7.632783294297951e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016416988729578482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5193.837573781209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.857164243712568, dt = 0.0016416988729578482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.8214596497756474e-16,0)
sum a = (6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016366134281883265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4867.662260583872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.858805942585526, dt = 0.0016366134281883265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.7867651802561113e-16,0)
sum a = (-6.245004513516506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016315866122669572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5079.197665387896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.860442556013714, dt = 0.0016315866122669572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8388068845354155e-16,0)
sum a = (6.938893903907228e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001626619538627986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4861.909534711338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.862074142625981, dt = 0.001626619538627986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8908485888147197e-16,0)
sum a = (2.0816681711721685e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016217133073831353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5106.747135491219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.863700762164609, dt = 0.0016217133073831353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.93 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8735013540549517e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.001616869005500918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4823.568798388626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.865322475471992, dt = 0.001616869005500918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8041124150158794e-16,0)
sum a = (3.469446951953614e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016120877069827973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5137.683653445087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8669393444774927, dt = 0.0016120877069827973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8041124150158794e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016073704730350958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4960.748982712065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8685514321844754, dt = 0.0016073704730350958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8561541192951836e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016027183522355636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4981.039795514159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8701588026575107, dt = 0.0016027183522355636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.7867651802561113e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015981323806934372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4870.641326052169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8717615210097462, dt = 0.0015981323806934372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8561541192951836e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015936135822017955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4957.844893610413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8733596533904397, dt = 0.0015936135822017955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8214596497756474e-16,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015891629683809731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5034.539587309209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8749532669726414, dt = 0.0015891629683809731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.74 us (96.9%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.7694179454963432e-16,0)
sum a = (2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015847815388117538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4673.443640941703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8765424299410225, dt = 0.0015847815388117538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.8041124150158794e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001580470281156994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4876.0966873033185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.878127211479834, dt = 0.001580470281156994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015762301712703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4826.706797086834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.879707681760991, dt = 0.0015762301712703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8041124150158794e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015720621732903321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4879.910816840079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8812839119322615, dt = 0.0015720621732903321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8735013540549517e-16,0)
sum a = (6.938893903907228e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015679672397192305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4913.363907967661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.882855974105552, dt = 0.0015679672397192305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.9081958235744878e-16,0)
sum a = (6.245004513516506e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015639463114836265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4897.240700999224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.884423941345271, dt = 0.0015639463114836265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.9081958235744878e-16,0)
sum a = (9.71445146547012e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001560000317976641 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4895.018932804252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.885987887656755, dt = 0.001560000317976641 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.8735013540549517e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015561301770791879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4756.312016643623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8875478879747316, dt = 0.0015561301770791879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 221.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.8735013540549517e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001552336795158889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.119e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5006.934400743859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.889104018151811, dt = 0.001552336795158889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015486210670447923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4731.780402131007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.89065635494697, dt = 0.0015486210670447923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.942890293094024e-16,0)
sum a = (0,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015449838759760558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4835.218412880117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.892204976014015, dt = 0.0015449838759760558 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.9081958235744878e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001541426093522691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4916.568578992368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.893749959889991, dt = 0.001541426093522691 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9081958235744878e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015379485794763709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4714.441983502559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.895291385983514, dt = 0.0015379485794763709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.9081958235744878e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015345521817092915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.626212450901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.89682933456299, dt = 0.0015345521817092915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,1.9081958235744878e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015312377359989581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4727.011858758733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8983638867446992, dt = 0.0015312377359989581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.2%)
LB compute : 253.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.97758476261356e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015280060658167526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4604.887735568521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.899895124480698, dt = 0.0015280060658167526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.942890293094024e-16,0)
sum a = (9.71445146547012e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015248579820780247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4772.305535429343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.901423130546515, dt = 0.0015248579820780247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.97758476261356e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015217942828514657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4740.180036095117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.902947988528593, dt = 0.0015217942828514657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.00151881575302538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4628.277279890374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9044697828114443, dt = 0.00151881575302538 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015159231639284884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4702.810478183404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.90598859856447, dt = 0.0015159231639284884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.97758476261356e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015131172729028323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4776.249339348779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.907504521728398, dt = 0.0015131172729028323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015103988228262653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4625.729609618777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.909017639001301, dt = 0.0015103988228262653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.97758476261356e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015077685415820822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4609.422204473888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9105280378241276, dt = 0.0015077685415820822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,1.97758476261356e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015052271414731965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4407.097800899527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9120358063657097, dt = 0.0015052271414731965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,1.97758476261356e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015027753185783694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4672.208185652594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9135410335071827, dt = 0.0015027753185783694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015004137520479382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4597.400592209161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9150438088257613, dt = 0.0015004137520479382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0469737016526324e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001498143103336517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4738.768055976243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.916544222577809, dt = 0.001498143103336517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0469737016526324e-16,0)
sum a = (8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014959640153701936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4671.769687341016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9180423656811456, dt = 0.0014959640153701936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.0469737016526324e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014938771116457877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4753.711680427274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9195383296965156, dt = 0.0014938771116457877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014918829952598176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4541.760458608963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9210322068081616, dt = 0.0014918829952598176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0469737016526324e-16,0)
sum a = (4.163336342344337e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001489982247864923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4612.0622571915355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9225240898034213, dt = 0.001489982247864923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0469737016526324e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014881754285516143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4571.303981116064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9240140720512864, dt = 0.0014881754285516143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 272.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014864630726534032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4498.161286675962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.925502247479838, dt = 0.0014864630726534032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.0122792321330962e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014848456904735397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4644.4149696598415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.926988710552491, dt = 0.0014848456904735397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0469737016526324e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014833237659318392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4560.3329966657675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.928473556242965, dt = 0.0014833237659318392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.0122792321330962e-16,0)
sum a = (0,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014818977551303578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4505.824750431069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9299568800088966, dt = 0.0014818977551303578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.0122792321330962e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014805680848369823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4610.7424769233385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.931438777764027, dt = 0.0014805680848369823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0816681711721685e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014793351508864219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4616.000590126983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.932919345848864, dt = 0.0014793351508864219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0816681711721685e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014781993164984845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4488.2816880347345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.93439868099975, dt = 0.0014781993164984845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1163626406917047e-16,0)
sum a = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014771609105140393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4558.26754659075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9358768803162487, dt = 0.0014771609105140393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014762202255496158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4376.733443442521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.937354041226763, dt = 0.0014762202255496158 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 239.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014753775160722391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4548.420590804736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9388302614523125, dt = 0.0014753775160722391 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1510571102112408e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014746329963967913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4655.113712471777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.940305638968385, dt = 0.0014746329963967913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014739868386089761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4613.630707337366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9417802719647814, dt = 0.0014739868386089761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.185751579730777e-16,0)
sum a = (1.3877787807814457e-17,2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014734391704178372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4599.034855344843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9432542588033903, dt = 0.0014734391704178372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014729900729427274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4461.579687395776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.944727697973808, dt = 0.0014729900729427274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014726395784406738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4622.293347449099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.946200688046751, dt = 0.0014726395784406738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (0,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.00147238766798119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4516.860566020704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9476733276251914, dt = 0.00147238766798119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014722342690768624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4561.763297536652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.949145715293173, dt = 0.0014722342690768624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.185751579730777e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001472179253279269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4573.592267306766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9506179495622495, dt = 0.001472179253279269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014722224337512758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4543.802083184328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.952090128815529, dt = 0.0014722224337512758 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014723635628281647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4540.85203636159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.95356235124928, dt = 0.0014723635628281647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.185751579730777e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001472602329581675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4460.765298056886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.955034714812108, dt = 0.001472602329581675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014729383574026297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4585.157599185981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9565073171416896, dt = 0.0014729383574026297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 237.15 us (88.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001473371201619531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4462.4691769312185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.957980255499092, dt = 0.001473371201619531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.255140518769849e-16,0)
sum a = (0,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014739003471722601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4683.990089898076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9594536267007117, dt = 0.0014739003471722601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 258.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014745252063617853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4443.57825847601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.960927527047884, dt = 0.0014745252063617853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014752451166985486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4505.527408031271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.962402052254246, dt = 0.0014752451166985486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001476059338874014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4334.281999897802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9638772973709444, dt = 0.001476059338874014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 244.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014769670548815269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4350.973615624138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9653533567098185, dt = 0.0014769670548815269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.81 us (97.0%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001477967366314365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4386.068237147208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9668303237647, dt = 0.001477967366314365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014790592928703508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4586.289201477522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9683082911310144, dt = 0.0014790592928703508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014802417710938203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4571.237023040074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9697873504238848, dt = 0.0014802417710938203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3245294578089215e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014815136533869468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4702.045405037596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9712675921949785, dt = 0.0014815136533869468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3245294578089215e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014828737073233956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4579.573501153604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9727491058483655, dt = 0.0014828737073233956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 246.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3245294578089215e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014843206152979464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4325.362702815618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.974231979555689, dt = 0.0014843206152979464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014858529745460757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4507.521639066709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.975716300170987, dt = 0.0014858529745460757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014874692975674207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4548.614607046962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9772021531455333, dt = 0.0014874692975674207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 228.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.255140518769849e-16,0)
sum a = (0,3.3306690738754696e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001489168012986545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4744.718652527658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9786896224431008, dt = 0.001489168012986545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014909474668834048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4390.732088394065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9801787904560872, dt = 0.0014909474668834048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.3245294578089215e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014928059246243494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4566.738346673102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.981669737922971, dt = 0.0014928059246243494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 276.75 us (96.9%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001494741573222303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4487.774784298309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.983162543847595, dt = 0.001494741573222303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.8%)
patch tree reduce : 741.00 ns (0.3%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.2%)
LB compute : 241.27 us (95.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3245294578089215e-16,0)
sum a = (-6.938893903907228e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014967525242519874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4609.0058719741555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9846572854208175, dt = 0.0014967525242519874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 280.16 us (97.0%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014988368173424903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4599.731174714158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9861540379450697, dt = 0.0014988368173424903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (-9.71445146547012e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015009924242653477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4756.3204954933835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.987652874762412, dt = 0.0015009924242653477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.20 us (96.3%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.255140518769849e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015032172536313367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4650.907125432293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9891538671866775, dt = 0.0015032172536313367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015055091562036118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.903265703578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9906570844403086, dt = 0.0015055091562036118 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.001507865930828445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4717.090285743506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9921625935965124, dt = 0.001507865930828445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 279.20 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015102853309779242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4529.599511838521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.993670459527341, dt = 0.0015102853309779242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.393918396847994e-16,0)
sum a = (-6.938893903907228e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015127650718913912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4742.725393055023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.995180744858319, dt = 0.0015127650718913912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.463307335887066e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015153028382943457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4584.175168822135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9966935099302106, dt = 0.0015153028382943457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015178962926650807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4656.8621359914805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.998208812768505, dt = 0.0015178962926650807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.82 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.463307335887066e-16,0)
sum a = (-2.0816681711721685e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001520543084010581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4689.29548801619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.99972670906117, dt = 0.001520543084010581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015232408571043137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4726.403493835585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0012472521451805, dt = 0.0015232408571043137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015259872621297128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4791.534690995866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.002770493002285, dt = 0.0015259872621297128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.463307335887066e-16,0)
sum a = (-9.71445146547012e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015287799646644719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4656.402771409168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.004296480264415, dt = 0.0015287799646644719 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.5326962749261384e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015316166559325372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4868.411605400658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.00582526022908, dt = 0.0015316166559325372 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.01 us (8.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.83 us (89.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.6020852139652106e-16,0)
sum a = (-1.8041124150158794e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015344950632430307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4525.582161497425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.007356876885012, dt = 0.0015344950632430307 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.636779683484747e-16,0)
sum a = (6.938893903907228e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001537412960528453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4808.411681578498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0088913719482555, dt = 0.001537412960528453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.6020852139652106e-16,0)
sum a = (-5.551115123125783e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001540368178888672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4687.3656342889235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.010428784908784, dt = 0.001540368178888672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015433586170425357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4822.273722106561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.011969153087673, dt = 0.0015433586170425357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.498001805406602e-16,0)
sum a = (1.3877787807814457e-16,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015463822515856013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4679.960328259917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0135125117047155, dt = 0.0015463822515856013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.5673907444456745e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015494371469506802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4676.657444677656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.015058893956301, dt = 0.0015494371469506802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.42861286636753e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015525214649677241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4789.247007155098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.016608331103251, dt = 0.0015525214649677241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.636779683484747e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015556334739210628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4935.354961719347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.018160852568219, dt = 0.0015556334739210628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.636779683484747e-16,0)
sum a = (-4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001558771557005321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4840.668312511572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.01971648604214, dt = 0.001558771557005321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 234.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,2.636779683484747e-16,0)
sum a = (-1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015619342200863578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4811.477081359829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.021275257599145, dt = 0.0015619342200863578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.00156512009868029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4912.081801863413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.022837191819232, dt = 0.00156512009868029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015683279640720624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4616.1093913077675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.024402311917912, dt = 0.0015683279640720624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015715567285047908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4583.174570079888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.025970639881984, dt = 0.0015715567285047908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 283.81 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015748054493823038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.258e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4497.872720391501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.027542196610488, dt = 0.0015748054493823038 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.498001805406602e-16,0)
sum a = (-4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001578073332439463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4731.513618574773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.029117002059871, dt = 0.001578073332439463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.80 us (8.7%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 233.86 us (89.1%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.636779683484747e-16,0)
sum a = (-1.942890293094024e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015813597338479135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4702.019003840422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.03069507539231, dt = 0.0015813597338479135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.636779683484747e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015846641612385199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4902.4233917442525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.032276435126158, dt = 0.0015846641612385199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.20 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.7755575615628914e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015879862736356044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4605.373251091785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.033861099287396, dt = 0.0015879862736356044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.706168622523819e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015913258803119715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4666.620886907403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.035449085561032, dt = 0.0015913258803119715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.7755575615628914e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015946829385872587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5004.562875420933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.037040411441344, dt = 0.0015946829385872587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.8449465006019636e-16,0)
sum a = (-1.6653345369377348e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015980575506050932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4601.477525796587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.038635094379932, dt = 0.0015980575506050932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.7755575615628914e-16,0)
sum a = (-1.6653345369377348e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016014499591366581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4893.685751573526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.040233151930536, dt = 0.0016014499591366581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,2.706168622523819e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016048605424692996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4805.6193618580655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.041834601889673, dt = 0.0016048605424692996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.706168622523819e-16,0)
sum a = (1.942890293094024e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016082898084485656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4918.668858229465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.043439462432143, dt = 0.0016082898084485656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.8449465006019636e-16,0)
sum a = (-1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001611738387750401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4800.212334653361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.045047752240591, dt = 0.001611738387750401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,2.706168622523819e-16,0)
sum a = (-8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016152070264670352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4944.471501870877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0466594906283415, dt = 0.0016152070264670352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.706168622523819e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016186965780952043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4932.875424196094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.048274697654809, dt = 0.0016186965780952043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.87 us (96.1%)
LB move op cnt : 0
LB apply : 2.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.498001805406602e-16,0)
sum a = (1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016222079950189924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4605.675328606503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.049893394232904, dt = 0.0016222079950189924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (0.9%)
patch tree reduce : 621.00 ns (0.2%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 370.48 us (97.2%)
LB move op cnt : 0
LB apply : 2.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.7755575615628914e-16,0)
sum a = (-1.6653345369377348e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001625742319581377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.373e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4253.747578706581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.051515602227923, dt = 0.001625742319581377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001629300674838995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4735.631574661745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.053141344547504, dt = 0.001629300674838995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.66 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.706168622523819e-16,0)
sum a = (-2.498001805406602e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016328842550934358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4985.539664224433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0547706452223435, dt = 0.0016328842550934358 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 250.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.7755575615628914e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001636494316289916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4924.7910940117745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0564035294774365, dt = 0.001636494316289916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.7755575615628914e-16,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001640132166370423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4943.436115925966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.058040023793726, dt = 0.001640132166370423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016437991556636617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5070.844221458422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.059680155960097, dt = 0.0016437991556636617 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.636779683484747e-16,0)
sum a = (-1.249000902703301e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016474966673884323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4956.087040598231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0613239551157605, dt = 0.0016474966673884323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016512261083407045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4974.62191421285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.062971451783149, dt = 0.0016512261083407045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 255.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016549888998277132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4852.384792479112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.06462267789149, dt = 0.0016549888998277132 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.5673907444456745e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016587864689051133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5157.112101186514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.066277666791318, dt = 0.0016587864689051133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.498001805406602e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016626202399657776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4884.674074339978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.067936453260223, dt = 0.0016626202399657776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.498001805406602e-16,0)
sum a = (-3.0531133177191805e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001666491626721261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4984.766010998838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.069599073500188, dt = 0.001666491626721261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001670402024609547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4903.705511523724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.071265565126909, dt = 0.001670402024609547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.16 us (95.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.42861286636753e-16,0)
sum a = (-1.942890293094024e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016743528036554617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 2.7% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5117.840546481709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.072935967151519, dt = 0.0016743528036554617 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.42861286636753e-16,0)
sum a = (-2.0816681711721685e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016783453018032522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.263e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4773.409114289067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.074610319955174, dt = 0.0016783453018032522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.001682380818734306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4958.8025804069675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.076288665256977, dt = 0.001682380818734306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 230.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016864606101769741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5221.325887820613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.077971046075712, dt = 0.0016864606101769741 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.5%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016905858827099241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5106.308808480861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.079657506685889, dt = 0.0016905858827099241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.498001805406602e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016947577890554957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5117.63296294847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.081348092568599, dt = 0.0016947577890554957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-16,2.498001805406602e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016989774238551198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5080.826872937678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.083042850357654, dt = 0.0016989774238551198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (1.3%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.42861286636753e-16,0)
sum a = (-1.1102230246251565e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017032458199150256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5205.390929405293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.084741827781509, dt = 0.0017032458199150256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017075639449071884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5207.145800520139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.086445073601424, dt = 0.0017075639449071884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017119326985077649 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5248.395275225956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.088152637546331, dt = 0.0017119326985077649 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,2.42861286636753e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017163529099530183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5221.62419182289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.089864570244839, dt = 0.0017163529099530183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.00172082533599106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5130.626952532083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.091580923154792, dt = 0.00172082533599106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.2898349882893854e-16,0)
sum a = (-1.5265566588595902e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017253506592064555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5233.773081779725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.093301748490783, dt = 0.0017253506592064555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.3592239273284576e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017299294866938704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.236e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5024.43545086012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0950270991499895, dt = 0.0017299294866938704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.220446049250313e-16,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017345623490565064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5408.597790876339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0967570286366835, dt = 0.0017345623490565064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.220446049250313e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017392496997048884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5416.534275295832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.09849159098574, dt = 0.0017392496997048884 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.2898349882893854e-16,0)
sum a = (-1.5265566588595902e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017439919144317199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5404.492323879101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.100230840685445, dt = 0.0017439919144317199 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.3592239273284576e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017487892912389602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5483.575915225493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.101974832599876, dt = 0.0017487892912389602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.3592239273284576e-16,0)
sum a = (-1.5265566588595902e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001753642050393804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5391.013251772993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.103723621891115, dt = 0.001753642050393804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.42861286636753e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017585503346911231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5532.556219715371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.105477263941509, dt = 0.0017585503346911231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017635142099007661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5566.221691947245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1072358142762, dt = 0.0017635142099007661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.498001805406602e-16,0)
sum a = (-1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017685336653792145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5579.77000807064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.108999328486101, dt = 0.0017685336653792145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017736086148261744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.234e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5157.423909368236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.110767862151481, dt = 0.0017736086148261744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001778738897167857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5451.619276965042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.112541470766307, dt = 0.001778738897167857 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001783924277549943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5476.525268892598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.114320209663475, dt = 0.001783924277549943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.706168622523819e-16,0)
sum a = (-6.938893903907228e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017891644484244059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5612.7223253617085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.116104133941025, dt = 0.0017891644484244059 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.636779683484747e-16,0)
sum a = (1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001794459030715636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5529.612363757996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.11789329838945, dt = 0.001794459030715636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001799807575052475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5562.053423326761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.119687757420166, dt = 0.001799807575052475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.636779683484747e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018052095630540145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5653.8309849004845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.121487564995218, dt = 0.0018052095630540145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.636779683484747e-16,0)
sum a = (-1.249000902703301e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018106644086580688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5637.585113050433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.123292774558272, dt = 0.0018106644086580688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.42861286636753e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001816171459482446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5511.3521034707655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.12510343896693, dt = 0.001816171459482446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 21.97 us (8.2%)
LB compute : 236.21 us (88.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.42861286636753e-16,0)
sum a = (-2.3592239273284576e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018217299982100817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5433.486261030372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1269196104264125, dt = 0.0018217299982100817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018273392439901934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5750.652378709378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1287413404246225, dt = 0.0018273392439901934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018329983538484993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5478.3882997220135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.130568679668612, dt = 0.0018329983538484993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018387064241004436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5685.380795284233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.132401678022461, dt = 0.0018387064241004436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 275.38 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.2898349882893854e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018444624917622074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5614.2040963682975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.134240384446562, dt = 0.0018444624917622074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 242.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001850265535955036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5701.990585233145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.136084846938324, dt = 0.001850265535955036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.220446049250313e-16,0)
sum a = (-1.6653345369377348e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018561144792991191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5794.81128193812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.137935112474279, dt = 0.0018561144792991191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.2898349882893854e-16,0)
sum a = (8.326672684688674e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018620081892939122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5790.42054172382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.139791226953578, dt = 0.0018620081892939122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018679454796823951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5690.579481556195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.141653235142872, dt = 0.0018679454796823951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018739251117972783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5757.597888662149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.143521180622555, dt = 0.0018739251117972783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.2898349882893854e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001879945795887664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5845.172975539474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1453951057343525, dt = 0.001879945795887664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.72 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.220446049250313e-16,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018860061924251394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5781.049148189432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.14727505153024, dt = 0.0018860061924251394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.42861286636753e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001892104913388621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5884.12592273297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.149161057722665, dt = 0.001892104913388621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.66 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018982405235276635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5746.149611781041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.151053162636054, dt = 0.0018982405235276635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019044115416042453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5692.093720648624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.152951403159582, dt = 0.0019044115416042453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7520707107365752e-16,2.1510571102112408e-16,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001910616441613313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5832.77243522906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.154855814701186, dt = 0.001910616441613313 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,2.0816681711721685e-16,0)
sum a = (1.1102230246251565e-16,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001916853653982605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5895.7461548222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.156766431142799, dt = 0.001916853653982605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.682681771697503e-16,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001923121566752487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5891.4148725251025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.158683284796782, dt = 0.001923121566752487 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,2.0816681711721685e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019294185267367133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5701.094098428776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.160606406363534, dt = 0.0019294185267367133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.942890293094024e-16,0)
sum a = (-1.1102230246251565e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019357428406651704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5774.790693243725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.162535824890271, dt = 0.0019357428406651704 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7520707107365752e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019420927763097783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5750.941185145894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.164471567730936, dt = 0.0019420927763097783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.84 us (95.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019484665635948481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5836.6919601682675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.166413660507246, dt = 0.0019484665635948481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.8735013540549517e-16,0)
sum a = (0,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019548623956932585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5911.56986278195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.16836212707084, dt = 0.0019548623956932585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132928326584306e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019612784301098816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5990.762632729446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.170316989466533, dt = 0.0019612784301098816 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019677127897537393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6016.478588272424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.172278267896643, dt = 0.0019677127897537393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6479873021779667e-16,1.942890293094024e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019741635640003947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5925.829357509348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.174245980686397, dt = 0.0019741635640003947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.682681771697503e-16,2.0122792321330962e-16,0)
sum a = (-1.3877787807814457e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019806288097461017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6022.381933674396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.176220144250397, dt = 0.0019806288097461017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6306400674181987e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019871065524552493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6106.021372070708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.178200773060143, dt = 0.0019871065524552493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 254.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.682681771697503e-16,1.8735013540549517e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019935947872026178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5951.613567572631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.180187879612599, dt = 0.0019935947872026178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020000914797119536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6291.35169525083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.182181474399801, dt = 0.0020000914797119536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7520707107365752e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002006594567392339 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6102.051574353091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.184181565879513, dt = 0.002006594567392339 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700029006457271e-16,1.734723475976807e-16,0)
sum a = (-1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020131019603738176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5850.423687140446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.186188160446905, dt = 0.0020131019603738176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 281.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7520707107365752e-16,1.6653345369377348e-16,0)
sum a = (-1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020196115425436603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.277e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5674.501628902054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.188201262407279, dt = 0.0020196115425436603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 3.29 us (1.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 245.24 us (95.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.8735013540549517e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002026121172584661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5899.3362401514205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.190220873949823, dt = 0.002026121172584661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 420.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.19 us (89.4%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8735013540549517e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002032628685016738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.307e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5579.112028613481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1922469951224075, dt = 0.002032628685016738 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8561541192951836e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020391318912431223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6119.1193993660145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.194279623807424, dt = 0.0020391318912431223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 238.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8561541192951836e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.00204562858060231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6012.418840769531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.196318755698667, dt = 0.00204562858060231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020521165214269113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.242e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5929.926369892378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1983643842792695, dt = 0.0020521165214269113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020585934621104455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6166.426532973368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.200416500800697, dt = 0.0020585934621104455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.6653345369377348e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002065057132183097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6213.897469056104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.202475094262807, dt = 0.002065057132183097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020715052433973266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6236.7601924324945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2045401513949905, dt = 0.0020715052433973266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,-9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002077935490824202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6168.968181783148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.206611656638388, dt = 0.002077935490824202 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.66 us (95.1%)
LB move op cnt : 0
LB apply : 4.66 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.717376241217039e-16,1.734723475976807e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020843455539612025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.032967729587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.208689592129212, dt = 0.0020843455539612025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.27 us (89.7%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.682681771697503e-16,1.6653345369377348e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020907330978522055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.251e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5997.162716930183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.210773937683173, dt = 0.0020907330978522055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.717376241217039e-16,1.6653345369377348e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.002097095774220262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6469.325017957978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.212864670781026, dt = 0.002097095774220262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 227.94 us (88.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7694179454963432e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.002103431222613705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6196.699863166107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.214961766555247, dt = 0.002103431222613705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.734723475976807e-16,0)
sum a = (-8.326672684688674e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002109737071566044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6435.140761226204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.217065197777861, dt = 0.002109737071566044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.8041124150158794e-16,0)
sum a = (0,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021160109397700385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6465.548071703452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.219174934849427, dt = 0.0021160109397700385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8821749714348357e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021222504372662393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6436.089247024826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.221290945789197, dt = 0.0021222504372662393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8561541192951836e-16,1.734723475976807e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021284531666462244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6293.489845423122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.223413196226463, dt = 0.0021284531666462244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8388068845354155e-16,1.5959455978986625e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002134616724270686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6436.1190253183495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.22554164939311, dt = 0.002134616724270686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8301332671555315e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021407387015024205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6523.540838343566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.22767626611738, dt = 0.0021407387015024205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8301332671555315e-16,1.8735013540549517e-16,0)
sum a = (0,-7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002146816685954214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6495.403058468556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.229817004818883, dt = 0.002146816685954214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8995222061946038e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021528482627515347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6595.555538953703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.231963821504837, dt = 0.0021528482627515347 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9255430583342559e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,-1.0755285551056204e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021588310158098794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6405.210733546606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.234116669767588, dt = 0.0021588310158098794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0036056147532122e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021647625291265106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6547.434500239736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.236275500783398, dt = 0.0021647625291265106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.942890293094024e-16,0)
sum a = (-5.551115123125783e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002170640388086292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6769.043044558146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.238440263312524, dt = 0.002170640388086292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.951563910473908e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,-1.3530843112619095e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002176462180781222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6709.764151743148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.240610903700611, dt = 0.002176462180781222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021822254993432073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6673.8475337513255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.242787365881392, dt = 0.0021822254993432073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 632.00 ns (0.3%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.947227101783966e-16,2.0122792321330962e-16,0)
sum a = (0,-5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002187927941289549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6586.088750795842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.244969591380735, dt = 0.002187927941289549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.960237527853792e-16,1.942890293094024e-16,0)
sum a = (0,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002193567110880532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.252e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6293.483933494982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.247157519322024, dt = 0.002193567110880532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0296264668928643e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021991406204884666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6640.554867177759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.249351086432904, dt = 0.0021991406204884666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9992688060632702e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002204646091977421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6705.338700060624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.251550227053393, dt = 0.002204646091977421 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8995222061946038e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002210081158092874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6905.22963367063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.25375487314537, dt = 0.002210081158092874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93421667571414e-16,1.8735013540549517e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022154434638604016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6660.588003122849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2559649543034626, dt = 0.0022154434638604016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 222.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9971004017182992e-16,1.942890293094024e-16,0)
sum a = (-5.551115123125783e-17,-7.28583859910259e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022207306679924875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6966.742489930596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.258180397767323, dt = 0.0022207306679924875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0036056147532122e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022259404443024746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6542.068718851483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.260401128435316, dt = 0.0022259404443024746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9418060909215384e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022310704831246045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6823.822706226051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.262627068879618, dt = 0.0022310704831246045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9331324735416544e-16,2.1510571102112408e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022361184927390727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6493.314754651856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.264858139362742, dt = 0.0022361184927390727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.025018607659801e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002241082200800927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6945.384073174479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.267094257855481, dt = 0.002241082200800927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0087555750725183e-16,2.220446049250313e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022459593557716414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6914.720988851572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.269335340056282, dt = 0.0022459593557716414 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1152784385192192e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-8.500145032286355e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.002250747728352085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6805.364599594233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.271581299412054, dt = 0.002250747728352085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0729945537922845e-16,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,3.2959746043559335e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.00225544511291563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6714.1126204658585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.273832047140406, dt = 0.00225544511291563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 229.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1315414711065017e-16,2.0816681711721685e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.002260049328940049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7046.345359421362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.276087492253321, dt = 0.002260049328940049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1488887058662698e-16,2.1510571102112408e-16,0)
sum a = (0,-2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022645582224368123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6902.0028470854395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.278347541582261, dt = 0.0022645582224368123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1618991319360958e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002268969667376424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6865.886629940839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2806120998046975, dt = 0.002268969667376424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0599841277224584e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002273281567108291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6879.777310139163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.282881069472074, dt = 0.002273281567108291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1423834928313568e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-5.637851296924623e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022774918557737006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6876.668908740767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.285154351039182, dt = 0.0022774918557737006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1250362580715887e-16,1.942890293094024e-16,0)
sum a = (-2.7755575615628914e-17,1.474514954580286e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022815984997103652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6990.984488967628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.287431842894955, dt = 0.0022815984997103652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1120258320017626e-16,1.8735013540549517e-16,0)
sum a = (-2.7755575615628914e-17,-1.9949319973733282e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002285599498847029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7015.931610951223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.289713441394666, dt = 0.002285599498847029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8735013540549517e-16,0)
sum a = (0,-2.0383000842727483e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022894928880865784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6957.037816412565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.291999040893512, dt = 0.0022894928880865784 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0946785972419946e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-6.223320470066795e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002293276738676071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6967.9991115707435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.294288533781599, dt = 0.002293276738676071 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,1.942890293094024e-16,0)
sum a = (0,2.1304572689340162e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022969491595621165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6870.234788107489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2965818105202755, dt = 0.0022969491595621165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.8735013540549517e-16,0)
sum a = (0,-6.982261990806649e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002300508298729993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7005.878159839107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2988787596798375, dt = 0.002300508298729993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0990154059319366e-16,1.8041124150158794e-16,0)
sum a = (0,8.716985466783456e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002303952344524913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7077.410338792881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.301179267978568, dt = 0.002303952344524913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 291.78 us (97.1%)
LB move op cnt : 0
LB apply : 1.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1423834928313568e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023072795269537807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6807.380757400535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.303483220323092, dt = 0.0023072795269537807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0990154059319366e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-2.168404344971009e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023104881189658973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7282.683405813736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.305790499850046, dt = 0.0023104881189658973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1250362580715887e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002313576437710903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6890.711540395867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.308100987969012, dt = 0.002313576437710903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.211772431870429e-16,1.734723475976807e-16,0)
sum a = (0,1.5612511283791264e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023165428457724343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7165.344964404375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.310414564406723, dt = 0.0023165428457724343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 281.88 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.734723475976807e-16,0)
sum a = (0,4.7704895589362195e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002319385752375835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6800.238628382779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.312731107252495, dt = 0.002319385752375835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-8.500145032286355e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023221036145683587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7147.42096426114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.315050493004871, dt = 0.0023221036145683587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 255.36 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2724877535296173e-16,1.6653345369377348e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023246949383702695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7333.145327772452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.317372596619439, dt = 0.0023246949383702695 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 244.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2985086056692694e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,7.806255641895632e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002327158279895294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7253.231472697116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.31969729155781, dt = 0.002327158279895294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (0,-4.683753385137379e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023294922464388752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7250.906438080904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.322024449837705, dt = 0.0023294922464388752 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 250.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-1.2836953722228372e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002331695497532737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7182.260102087704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3243539420841435, dt = 0.002331695497532737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,1.6653345369377348e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023337667459642684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7074.390409084043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.326685637581676, dt = 0.0023337667459642684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023357047587592474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7330.5519800780085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.32901940432764, dt = 0.0023357047587592474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.6653345369377348e-16,0)
sum a = (0,2.6020852139652106e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002337508358126554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7406.953998013861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3313551090864, dt = 0.002337508358126554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9949319973733282e-16,1.6653345369377348e-16,0)
sum a = (0,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002339176422363443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7070.354683730339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.333692617444527, dt = 0.002339176422363443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,1.734723475976807e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023407078867200407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7330.30737415609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.33603179386689, dt = 0.0023407078867200407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9949319973733282e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023421017442218374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7270.1132826593675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.33837250175361, dt = 0.0023421017442218374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002343357046448851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7415.853855834273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3407146034978314, dt = 0.002343357046448851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0643209364124004e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023444729042703377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7247.7077227477985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3430579605442805, dt = 0.0023444729042703377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1337098754514727e-16,1.734723475976807e-16,0)
sum a = (0,5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023454484885338787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7305.936222178453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.345402433448551, dt = 0.0023454484885338787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002346283030707787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.120e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7538.174291832764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.347747881937084, dt = 0.002346283030707787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.203098814490545e-16,1.6653345369377348e-16,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023469758234757826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7098.750716922995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.350094164967792, dt = 0.0023469758234757826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.734723475976807e-16,0)
sum a = (0,-1.0755285551056204e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023475262212830127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7164.9163478264845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.352441140791267, dt = 0.0023475262212830127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 255.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1684043449710089e-16,1.5959455978986625e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002347933640832505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7438.793607355482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.35478866701255, dt = 0.002347933640832505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.237793284010081e-16,1.6653345369377348e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023481975615312223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7112.609492159583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.357136600653383, dt = 0.0023481975615312223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.237793284010081e-16,1.5959455978986625e-16,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023483175258849774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7365.700393236827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.359484798214914, dt = 0.0023483175258849774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3071822230491534e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023482931398415025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6978.9722112081345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.361833115740799, dt = 0.0023482931398415025 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002348124073081066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7363.748122603548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.364181408880641, dt = 0.002348124073081066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3418766925686896e-16,1.5959455978986625e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023478100592541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7324.808621317524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.366529532953722, dt = 0.0023478100592541 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3071822230491534e-16,1.5959455978986625e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002347350896165361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7432.61424744915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.368877343012976, dt = 0.002347350896165361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023467464459042413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7266.752796209541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3712246939091415, dt = 0.0023467464459042413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023459966349209335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7117.595740755164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.373571440355046, dt = 0.0023459966349209335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.5265566588595902e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.00234510145404818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7093.758670846773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.375917436989967, dt = 0.00234510145404818 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.97758476261356e-16,1.5959455978986625e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023440609584685114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 2.1% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7161.927235671207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.378262538444015, dt = 0.0023440609584685114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.37 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002342875267626846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6843.2853877522775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.380606599402483, dt = 0.002342875267626846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.5959455978986625e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023415445650885073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7363.602203450679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.38294947467011, dt = 0.0023415445650885073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0469737016526324e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023400690983427174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7398.887944729817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.385291019235199, dt = 0.0023400690983427174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 229.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.734723475976807e-16,0)
sum a = (-2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023384491785517643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7430.035679729216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.387631088333541, dt = 0.0023384491785517643 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023366851802460887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7196.729098022452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.389969537512093, dt = 0.0023366851802460887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 241.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.00233477754096562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7093.361156385718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.39230622269234, dt = 0.00233477754096562 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023327267608477913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7213.103893247075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.394641000233305, dt = 0.0023327267608477913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023305334021627134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7317.497583336206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.396973726994153, dt = 0.0023305334021627134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6653345369377348e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.002328198088796113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 2.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7142.88046227882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.399304260396316, dt = 0.002328198088796113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023257215056806495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6998.071385531642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.401632458485112, dt = 0.0023257215056806495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 245.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.5959455978986625e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002323104398176374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7262.231303127375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.403958179990793, dt = 0.002323104398176374 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.5959455978986625e-16,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002320347571401119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6992.183461267016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.406281284388969, dt = 0.002320347571401119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002317451889511712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7020.990269454045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.40860163196037, dt = 0.002317451889511712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 272.54 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.6653345369377348e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023144182749369555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7190.11478933135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4109190838498815, dt = 0.0023144182749369555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (0,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002311247707563401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7371.450073850732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.413233502124818, dt = 0.002311247707563401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002307941223875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7316.409637769649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.415544749832382, dt = 0.002307941223875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023044999160478172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7320.264813015193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4178526910562566, dt = 0.0023044999160478172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002300924931000988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7172.15763650601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.420157190972304, dt = 0.002300924931000988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002297217469405231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6917.659289908416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.422458115903305, dt = 0.002297217469405231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.6653345369377348e-16,0)
sum a = (0,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.00229337878465026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7281.555429620435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.424755333372711, dt = 0.00229337878465026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 272.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.5265566588595902e-16,0)
sum a = (-2.7755575615628914e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022894101817724564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7046.913302100491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.427048712157362, dt = 0.0022894101817724564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 223.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.457167719820518e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022853130163443067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7283.602241831977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.429338122339134, dt = 0.0022853130163443067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.3877787807814457e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002281088693327062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6901.500454533599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.431623435355478, dt = 0.002281088693327062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002276738665888191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7031.8786449349545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.433904524048805, dt = 0.002276738665888191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5326962749261384e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002272264434185201 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7161.056822881708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.436181262714694, dt = 0.002272264434185201 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.498001805406602e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022676675441174942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7228.990331243084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.438453527148879, dt = 0.0022676675441174942 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.00226294958604787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6979.186376436986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.440721194692997, dt = 0.00226294958604787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 281.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.002258112193495452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6774.12632360032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.442984144279045, dt = 0.002258112193495452 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.463307335887066e-16,1.457167719820518e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022531570418016984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7040.716211068628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4452422564725405, dt = 0.0022531570418016984 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.5265566588595902e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022480858467713357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6824.118272506641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.447495413514342, dt = 0.0022480858467713357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.393918396847994e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022429003632899232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6968.096011179807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.449743499361113, dt = 0.0022429003632899232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.5265566588595902e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022376023839199176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6965.787471277595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.451986399724403, dt = 0.0022376023839199176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.5959455978986625e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002232193737477031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6949.933076726773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.454224002108322, dt = 0.002232193737477031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.457167719820518e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022266762875887114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7039.436991081729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.456456195845799, dt = 0.0022266762875887114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5265566588595902e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022210519312366147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6613.802652208685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.458682872133388, dt = 0.0022210519312366147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3245294578089215e-16,1.5959455978986625e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002215322597284899 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7103.426146254711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.460903924064625, dt = 0.002215322597284899 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002209490244996208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6858.678267180866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.463119246661909, dt = 0.002209490244996208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.255140518769849e-16,1.734723475976807e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022035568625371794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6976.8969696531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.465328736906906, dt = 0.0022035568625371794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.67 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021975244654753485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6841.703512385613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.467532293769443, dt = 0.0021975244654753485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002191395095269267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6797.89240675129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.469729818234918, dt = 0.002191395095269267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021851708177536796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6901.45214659955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.471921213330187, dt = 0.0021851708177536796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.185751579730777e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002178853721621569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6801.899942166103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.474106384147941, dt = 0.002178853721621569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1163626406917047e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021724459169048505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6889.486598342463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.476285237869562, dt = 0.0021724459169048505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8041124150158794e-16,0)
sum a = (-5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021659495334555297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6521.022128216993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.478457683786467, dt = 0.0021659495334555297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.3%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021593667194290296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6672.586971687659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.480623633319922, dt = 0.0021593667194290296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021526996397714508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6396.165281037003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.482783000039351, dt = 0.0021526996397714508 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 237.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.8041124150158794e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021459504747124336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6664.974163194782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.484935699679123, dt = 0.0021459504747124336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.08 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021391214182653055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.256e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6149.599210478154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4870816501538355, dt = 0.0021391214182653055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.734723475976807e-16,0)
sum a = (-5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002132214676736127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6724.73508363098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.489220771572101, dt = 0.002132214676736127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021252324672432444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6705.3646043987355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.491352986248837, dt = 0.0021252324672432444 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002118177016248877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6710.78360403838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.49347821871608, dt = 0.002118177016248877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 226.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002111050558104276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.7% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6533.707075788333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.4955963957323295, dt = 0.002111050558104276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6653345369377348e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021038553336099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6377.539348176134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.497707446290434, dt = 0.0021038553336099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.002096593588592037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6599.956604632975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.499811301624044, dt = 0.002096593588592037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5959455978986625e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020892675724972416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6549.438721766131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.501907895212637, dt = 0.0020892675724972416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.457167719820518e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002081879537005908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6451.56478786611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.503997162785134, dt = 0.002081879537005908 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 265.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.457167719820518e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002074431734666261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6277.486391979701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.50607904232214, dt = 0.002074431734666261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.457167719820518e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020669264175499653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6336.330051848719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.508153474056806, dt = 0.0020669264175499653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 273.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.3877787807814457e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002059365835930532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6218.626711311358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.510220400474356, dt = 0.002059365835930532 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.249000902703301e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020517522369856355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6538.99557172082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.512279766310287, dt = 0.0020517522369856355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002044087863524381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6206.121044685643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.514331518547272, dt = 0.002044087863524381 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-16,1.3183898417423734e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020363749527405306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6295.2852481448945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.516375606410796, dt = 0.0020363749527405306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002028615734992637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6186.794912687962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.518411981363537, dt = 0.002028615734992637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.3183898417423734e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002020812432611943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6434.364561448785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5204405970985295, dt = 0.002020812432611943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.249000902703301e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020129672587388993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6380.270471366975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.522461409531141, dt = 0.0020129672587388993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.77 us (9.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.47 us (88.7%)
LB move op cnt : 0
LB apply : 1.45 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020050824161890507 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6209.0770556185635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.52447437678988, dt = 0.0020050824161890507 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (60.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.3877787807814457e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019971600963489987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6344.768065347706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.526479459206069, dt = 0.0019971600963489987 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.3183898417423734e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019892024781031064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6013.655644235112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.528476619302418, dt = 0.0019892024781031064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019812117267915077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6102.243261468178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5304658217805205, dt = 0.0019812117267915077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.249000902703301e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019731899931999864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6054.832173236002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.532447033507312, dt = 0.0019731899931999864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.1796119636642288e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001965139412582174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6272.574808378478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.534420223500512, dt = 0.001965139412582174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.249000902703301e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019570621037145017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6175.195774293861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.536385362913094, dt = 0.0019570621037145017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.249000902703301e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019489601679842548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6049.92634335257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5383424250168085, dt = 0.0019489601679842548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.249000902703301e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019408356885110471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6173.760545642728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.540291385184792, dt = 0.0019408356885110471 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.3183898417423734e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019326907293019625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5751.329569337943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.542232220873303, dt = 0.0019326907293019625 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.3183898417423734e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001924527334440549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6060.718473556172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.544164911602605, dt = 0.001924527334440549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.3183898417423734e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019163475273098265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6051.814159295245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.546089438937046, dt = 0.0019163475273098265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.3530843112619095e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019081533098493915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5837.435955891567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.548005786464356, dt = 0.0019081533098493915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.2836953722228372e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001899946661846652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5821.948456451454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.549913939774205, dt = 0.001899946661846652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 236.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.249000902703301e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018917295402622013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5933.290234213618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.551813886436052, dt = 0.0018917295402622013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.2836953722228372e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018835038785892594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.254e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5432.219043517667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.553705615976314, dt = 0.0018835038785892594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 243.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.3530843112619095e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018752715862470834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5870.407309572169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.555589119854903, dt = 0.0018752715862470834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.2836953722228372e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018670345480082033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5810.781622418881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.55746439144115, dt = 0.0018670345480082033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.457167719820518e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018587946234592796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5780.372255577589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.559331425989158, dt = 0.0018587946234592796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.3530843112619095e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001850553646495365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5581.635258883905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.561190220612617, dt = 0.001850553646495365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 244.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.457167719820518e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018423134248472782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5756.277413961029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.563040774259112, dt = 0.0018423134248472782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.00183407573964179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5672.069629460976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.564883087683959, dt = 0.00183407573964179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.58 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.491862189340054e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018258423449942596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5550.824689078249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.566717163423601, dt = 0.0018258423449942596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5959455978986625e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001817614967633349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5690.3952367993825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5685430057685945, dt = 0.001817614967633349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 257.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018093953065573803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5569.403230168762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.570360620736228, dt = 0.0018093953065573803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5612511283791264e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018011850327219003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5610.9630407237155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.572170016042785, dt = 0.0018011850327219003 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 266.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017929857887579563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5460.342661848929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.573971201075507, dt = 0.0017929857887579563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 224.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.5612511283791264e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001784799188720584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5519.776053012984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.575764186864265, dt = 0.001784799188720584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 226.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.5265566588595902e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017766268178669661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5613.409642761506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.577548986052985, dt = 0.0017766268178669661 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.5265566588595902e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017684702324636983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5439.6804025258825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.579325612870853, dt = 0.0017684702324636983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.491862189340054e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017603309596225935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5457.90922952162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5810940831033164, dt = 0.0017603309596225935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.4224732503009818e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017522104971643912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5492.514176915961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.582854414062939, dt = 0.0017522104971643912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.491862189340054e-16,0)
sum a = (1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001744110313509774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5436.826028842441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.584606624560103, dt = 0.001744110313509774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 292.64 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.4224732503009818e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001736031847597036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5131.803192491083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.586350734873613, dt = 0.001736031847597036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.457167719820518e-16,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017279765088257404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5501.247873207902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.58808676672121, dt = 0.0017279765088257404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.491862189340054e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017199456770257105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5376.2979472791585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.589814743230035, dt = 0.0017199456770257105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5612511283791264e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017119407024506427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5467.096993966365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.591534688907061, dt = 0.0017119407024506427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5612511283791264e-16,0)
sum a = (8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017039629057956664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5232.3502488596405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.593246629609512, dt = 0.0017039629057956664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.001696013578238137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5190.924874370011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.594950592515308, dt = 0.001696013578238137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001688093981500938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5390.596974220846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.596646606093546, dt = 0.001688093981500938 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (0.9%)
patch tree reduce : 491.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 333.22 us (97.3%)
LB move op cnt : 0
LB apply : 1.77 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5612511283791264e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.001680205347937585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.271e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4780.382967375338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.598334700075047, dt = 0.001680205347937585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016723488806383957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5292.374288727523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.600014905422984, dt = 0.0016723488806383957 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5265566588595902e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016645257535570033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5170.986922601019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.601687254303623, dt = 0.0016645257535570033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5265566588595902e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016567371116564637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4963.97130845881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.60335178005718, dt = 0.0016567371116564637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 270.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016489840710742498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4874.082247836436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.605008517168836, dt = 0.0016489840710742498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3592239273284576e-16,1.5959455978986625e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016412677193053745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5194.618643603138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.60665750123991, dt = 0.0016412677193053745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6306400674181987e-16,0)
sum a = (1.5265566588595902e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.00163358911540292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4889.86747762143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.608298768959216, dt = 0.00163358911540292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6306400674181987e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016259492901952502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4970.852220135825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6099323580746185, dt = 0.0016259492901952502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.59 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,1.5959455978986625e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016183492465191678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4808.62372487967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.611558307364814, dt = 0.0016183492465191678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.6653345369377348e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001610789959468303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4996.875728998922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6131766566113335, dt = 0.001610789959468303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016032723766560143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4755.02152821265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.614787446570801, dt = 0.0016032723766560143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.6653345369377348e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015957974184921022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4984.890643441235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.616390718947457, dt = 0.0015957974184921022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.49 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.734723475976807e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015883659784726128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4998.847677960431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.617986516365949, dt = 0.0015883659784726128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8388068845354155e-16,0)
sum a = (6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015809789234820678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5044.833979585876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.619574882344422, dt = 0.0015809789234820678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.8735013540549517e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015736370941074134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5023.552407954544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.621155861267904, dt = 0.0015736370941074134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.8735013540549517e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015663413049630253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4759.283001522011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.622729498362012, dt = 0.0015663413049630253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.97758476261356e-16,0)
sum a = (1.6653345369377348e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015590923450261045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4952.8665819939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.624295839666975, dt = 0.0015590923450261045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0469737016526324e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015518909779818173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4636.464555825658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.625854932012001, dt = 0.0015518909779818173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0122792321330962e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015447379425775267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4794.723923325151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.627406822989983, dt = 0.0015447379425775267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.46 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0122792321330962e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.001537633952985509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4652.770627920269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.628951560932561, dt = 0.001537633952985509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.85 us (97.0%)
LB move op cnt : 0
LB apply : 1.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015305796991735147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4614.855481110196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.630489194885546, dt = 0.0015305796991735147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,1.9081958235744878e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015235758472825981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4536.693878461872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.63201977458472, dt = 0.0015235758472825981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.97758476261356e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015166230400116148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.352e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4055.7578306904506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.633543350432002, dt = 0.0015166230400116148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015097218970078123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4505.099691847114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.635059973472013, dt = 0.0015097218970078123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,1.97758476261356e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001502873015262964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4612.2907001672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.636569695369021, dt = 0.001502873015262964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.68 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,1.942890293094024e-16,0)
sum a = (-9.71445146547012e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014960769695144982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4608.649789469323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.638072568384284, dt = 0.0014960769695144982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0122792321330962e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014893343126510905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4656.593943049397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6395686453537985, dt = 0.0014893343126510905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014826455761222134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4671.949088844984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.641057979666449, dt = 0.0014826455761222134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014760112703511325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4686.688349617004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.642540625242572, dt = 0.0014760112703511325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0469737016526324e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014694318851508855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4577.173376917975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.644016636512923, dt = 0.0014694318851508855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220446049250313e-16,2.0122792321330962e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014629078901427523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4591.002241316239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.645486068398074, dt = 0.0014629078901427523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2898349882893854e-16,2.0469737016526324e-16,0)
sum a = (6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.001456439735176784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4543.125579174484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.646948976288217, dt = 0.001456439735176784 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.23 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,2.0990154059319366e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014500278507539493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4295.997272088974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.648405416023393, dt = 0.0014500278507539493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,2.0990154059319366e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014436726484494675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4445.116437430412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.649855443874147, dt = 0.0014436726484494675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 283.25 us (97.0%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510571102112408e-16,2.0643209364124004e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014373745213369443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4296.321568415474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.651299116522596, dt = 0.0014373745213369443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0990154059319366e-16,0)
sum a = (1.249000902703301e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014311338444128912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4533.136640939855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.652736491043933, dt = 0.0014311338444128912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.13 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.1163626406917047e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014249509750212828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4486.16845319892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.654167624888346, dt = 0.0014249509750212828 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0296264668928643e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014188262532777763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4350.353306701655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.655592575863367, dt = 0.0014188262532777763 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 235.46 us (88.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.0643209364124004e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014127600024932525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.841e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2774.9464255232424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.657011402116645, dt = 0.0014127600024932525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 267.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.0816681711721685e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014067525295963514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4218.162885650941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.658424162119138, dt = 0.0014067525295963514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014008041255546856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4382.02364326661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.659830914648734, dt = 0.0014008041255546856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.38 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.185751579730777e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013949150657944368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4315.832453543171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.661231718774289, dt = 0.0013949150657944368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.1163626406917047e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013890856106180392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4380.88852905021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.662626633840083, dt = 0.0013890856106180392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,2.1684043449710089e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013833160056196925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4400.3081523742385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.664015719450701, dt = 0.0013833160056196925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.1510571102112408e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.00137760648209844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4149.868477713255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.66539903545632, dt = 0.00137760648209844 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.1510571102112408e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013719572574685593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4338.663731482393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6667766419384185, dt = 0.0013719572574685593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.1163626406917047e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013663685356670619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4291.158442866016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.668148599195887, dt = 0.0013663685356670619 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0643209364124004e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013608405075580504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4185.369561471072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.669514967731554, dt = 0.0013608405075580504 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.75 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.97758476261356e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013553733513337518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4024.9810642103766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.670875808239112, dt = 0.0013553733513337518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.942890293094024e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013499672329120352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4219.564517686941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.672231181590446, dt = 0.0013499672329120352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 263.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.942890293094024e-16,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.001344622306330216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4099.415809353412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.673581148823358, dt = 0.001344622306330216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 241.51 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0122792321330962e-16,0)
sum a = (-6.938893903907228e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013393387141349986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4203.1742817028735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.674925771129688, dt = 0.0013393387141349986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013341165877683906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4174.746565334049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.676265109843823, dt = 0.0013341165877683906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0643209364124004e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013289560479494455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4153.13629851665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6775992264315915, dt = 0.0013289560479494455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.1163626406917047e-16,0)
sum a = (1.0408340855860843e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001323857205051703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4136.785240981506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.678928182479541, dt = 0.001323857205051703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.1163626406917047e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013188201594761942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3972.9224087740918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.680252039684593, dt = 0.0013188201594761942 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (61.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0469737016526324e-16,0)
sum a = (6.245004513516506e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013138450020199123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4117.970721779024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.681570859844069, dt = 0.0013138450020199123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0469737016526324e-16,0)
sum a = (-6.245004513516506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013089318142396314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3961.268726431912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.682884704846089, dt = 0.0013089318142396314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0296264668928643e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013040806688109864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3998.970189692528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6841936366603285, dt = 0.0013040806688109864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0296264668928643e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012992916298827364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4001.017925844233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.68549771732914, dt = 0.0012992916298827364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0296264668928643e-16,0)
sum a = (1.3877787807814457e-16,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001294564753426114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3975.3308994482077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.686797008959022, dt = 0.001294564753426114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0383000842727483e-16,0)
sum a = (2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.001289900087579225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3976.509301124335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.688091573712448, dt = 0.001289900087579225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.1163626406917047e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012852976729864059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3997.8238542258564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.689381473800028, dt = 0.0012852976729864059 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (70.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0209528495129803e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012807575431325149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3932.377766517992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.690666771473014, dt = 0.0012807575431325149 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0296264668928643e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012762797246721007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3890.4296645957997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.691947529016146, dt = 0.0012762797246721007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0556473190325164e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012718642377534165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3752.022761348951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.693223808740818, dt = 0.0012718642377534165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0643209364124004e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012675110963372435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3867.5369575475775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.694495672978571, dt = 0.0012675110963372435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0729945537922845e-16,0)
sum a = (-2.0816681711721685e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012632203085105186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3764.524143575431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.695763184074909, dt = 0.0012632203085105186 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0643209364124004e-16,0)
sum a = (-1.0408340855860843e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012589918767947235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4004.488378757288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.697026404383419, dt = 0.0012589918767947235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0729945537922845e-16,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012548257984490593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4020.0620845323683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.698285396260214, dt = 0.0012548257984490593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.40 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0729945537922845e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012507220657683653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3764.813091181141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.699540222058664, dt = 0.0012507220657683653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0469737016526324e-16,0)
sum a = (6.938893903907228e-18,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.00124668066637582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3844.202819816195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.700790944124432, dt = 0.00124668066637582 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 263.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0036056147532122e-16,0)
sum a = (4.85722573273506e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.001242701583510402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3774.858779941117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.702037624790808, dt = 0.001242701583510402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0209528495129803e-16,0)
sum a = (2.0816681711721685e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012387847963091334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3880.0911544607284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.703280326374319, dt = 0.0012387847963091334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 256.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9949319973733282e-16,0)
sum a = (-3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001234930280084131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3837.3822265337526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.704519111170629, dt = 0.001234930280084131 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0122792321330962e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012311380065944658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3788.536438219229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.705754041450713, dt = 0.0012311380065944658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0296264668928643e-16,0)
sum a = (3.469446951953614e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012274079443128773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3708.4517917991425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.706985179457307, dt = 0.0012274079443128773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9905951886833861e-16,0)
sum a = (4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012237400586873517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833.3704347036332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.70821258740162, dt = 0.0012237400586873517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (3.469446951953614e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.001220134312397608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3591.717509000333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.709436327460308, dt = 0.001220134312397608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0079424234431542e-16,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.001216590665606528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3697.5634498639565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.710656461772706, dt = 0.001216590665606528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0469737016526324e-16,0)
sum a = (4.163336342344337e-17,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012131090762065584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3818.4055122593304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.711873052438312, dt = 0.0012131090762065584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0339632755828063e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012096895000611398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3607.0948303977125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.713086161514519, dt = 0.0012096895000611398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 601.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0426368929626904e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001206331891241192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3782.338304111789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.71429585101458, dt = 0.001206331891241192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0209528495129803e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001203036202256724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.237e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.1137769971892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.715502182905821, dt = 0.001203036202256724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0079424234431542e-16,0)
sum a = (4.163336342344337e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011998023842835902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3735.34135508066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.716705219108078, dt = 0.0011998023842835902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 286.81 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.25 us (90.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0014372104082412e-16,0)
sum a = (1.734723475976807e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011966303873854633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3530.5987258495675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.717905021492361, dt = 0.0011966303873854633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9884267843384151e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011935201607310767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3814.3970356841705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.719101651879746, dt = 0.0011935201607310767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 258.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.97758476261356e-16,0)
sum a = (3.8163916471489756e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011904716528067744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3678.3619970925934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.720295172040477, dt = 0.0011904716528067744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9927635930283571e-16,0)
sum a = (-3.469446951953614e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011874848116244423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3740.3118572615144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.721485643693284, dt = 0.0011874848116244423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0003530082357557e-16,0)
sum a = (-2.42861286636753e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011845595849248733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3674.1011846209976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.722673128504908, dt = 0.0011845595849248733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9792110658722883e-16,0)
sum a = (-1.734723475976807e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011816959203766126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3582.83406699479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.723857688089833, dt = 0.0011816959203766126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 336.16 us (97.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.982090977892953e-16,0)
sum a = (-3.122502256758253e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011788937657703606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3365.288794083919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.725039384010209, dt = 0.0011788937657703606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.976771610984196e-16,0)
sum a = (4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.001176153069208981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3603.952065914769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.726218277775979, dt = 0.001176153069208981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.9895109865109006e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011734737792931805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3686.7498107515617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.727394430845188, dt = 0.0011734737792931805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0068582212706687e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011708558453029155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3662.63536469851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.728567904624481, dt = 0.0011708558453029155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 236.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0101108277881252e-16,0)
sum a = (3.469446951953614e-18,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011682992173745917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3640.4850804220773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.729738760469784, dt = 0.0011682992173745917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.09 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0057740190981832e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011658038466741212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3568.315540059482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7309070596871585, dt = 0.0011658038466741212 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0057740190981832e-16,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011633696855658888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3636.797880107275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7320728635338325, dt = 0.0011633696855658888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-16,1.9927635930283571e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011609966877776982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3577.064514149547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.733236233219398, dt = 0.0011609966877776982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.0036056147532122e-16,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011586848085617517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3554.255855107887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.734397229907176, dt = 0.0011586848085617517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 262.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9949319973733282e-16,0)
sum a = (1.0408340855860843e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011564340048517362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3577.325530344705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7355559147157384, dt = 0.0011564340048517362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9992688060632702e-16,0)
sum a = (-8.673617379884035e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011542442354160539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3542.553157468769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.73671234872059, dt = 0.0011542442354160539 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9949319973733282e-16,0)
sum a = (-6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011521154610072866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3608.7580952750536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.737866592956006, dt = 0.0011521154610072866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.17 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9949319973733282e-16,0)
sum a = (6.938893903907228e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001150047644507928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3525.295283270492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.739018708417014, dt = 0.001150047644507928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9992688060632702e-16,0)
sum a = (-8.673617379884035e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011480407510724526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3602.975133738411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7401687560615215, dt = 0.0011480407510724526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.3%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.9992688060632702e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011460947482657747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3595.77715104358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.741316796812594, dt = 0.0011460947482657747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0036056147532122e-16,0)
sum a = (6.938893903907228e-18,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001144209606198165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3587.3069545335725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7424628915608595, dt = 0.001144209606198165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0036056147532122e-16,0)
sum a = (-2.6020852139652106e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011423852976566611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3463.1245158940383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.743607101167058, dt = 0.0011423852976566611 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 224.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,1.9949319973733282e-16,0)
sum a = (-8.673617379884035e-19,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011406217982330366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3467.7341622249523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.744749486464714, dt = 0.0011406217982330366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 281.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0036056147532122e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011389190864483862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3390.4360524925046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.745890108262947, dt = 0.0011389190864483862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9949319973733282e-16,0)
sum a = (-8.673617379884035e-19,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001137277143874368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3538.8291716201966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.747029027349396, dt = 0.001137277143874368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0036056147532122e-16,0)
sum a = (-4.336808689942018e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011356959552511502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3561.971498598618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.74816630449327, dt = 0.0011356959552511502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.0036056147532122e-16,0)
sum a = (-5.637851296924623e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001134175508602126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.6889982111916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.749302000448521, dt = 0.001134175508602126 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0036056147532122e-16,0)
sum a = (5.204170427930421e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001132715795345427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3457.0704549087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.750436175957123, dt = 0.001132715795345427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (3.415236843329339e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011313168104022837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3548.5219164490013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.751568891752469, dt = 0.0011313168104022837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0122792321330962e-16,0)
sum a = (6.830473686658678e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011299785523022823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3546.398271574257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.752700208562871, dt = 0.0011299785523022823 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0122792321330962e-16,0)
sum a = (-1.0408340855860843e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011287010232855488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3488.2789615297743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.753830187115173, dt = 0.0011287010232855488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0383000842727483e-16,0)
sum a = (-1.3444106938820255e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001127484229401909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3439.8856825025737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.754958888138458, dt = 0.001127484229401909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0122792321330962e-16,0)
sum a = (-6.938893903907228e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011263281806070443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3425.8351810484032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.75608637236786, dt = 0.0011263281806070443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0209528495129803e-16,0)
sum a = (-1.9081958235744878e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011252328908557055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3462.225088511675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.757212700548467, dt = 0.0011252328908557055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0296264668928643e-16,0)
sum a = (1.0408340855860843e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011241983781919835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3533.8594993431348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.758337933439323, dt = 0.0011241983781919835 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0296264668928643e-16,0)
sum a = (-7.806255641895632e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001123224664836693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3506.09860417648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.759462131817515, dt = 0.001123224664836693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0643209364124004e-16,0)
sum a = (2.6020852139652106e-17,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011223117772718861 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3515.29509376948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.760585356482352, dt = 0.0011223117772718861 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0643209364124004e-16,0)
sum a = (-5.204170427930421e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001121459746322519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3537.0838004673037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.761707668259624, dt = 0.001121459746322519 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0643209364124004e-16,0)
sum a = (2.42861286636753e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011206686072352994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3424.9930535324474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.762829128005946, dt = 0.0011206686072352994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0643209364124004e-16,0)
sum a = (1.3877787807814457e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011199383997547235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3351.089647180209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.763949796613182, dt = 0.0011199383997547235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0469737016526324e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011192691681963473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3375.420895202992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.765069735012936, dt = 0.0011192691681963473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0643209364124004e-16,0)
sum a = (-4.163336342344337e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011186609615172665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3454.0280921665712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.766189004181133, dt = 0.0011186609615172665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0469737016526324e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001118113833383851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3500.1603218075907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.76730766514265, dt = 0.001118113833383851 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0643209364124004e-16,0)
sum a = (-3.469446951953614e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001117627842236726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3522.1237344482174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.768425778976034, dt = 0.001117627842236726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0469737016526324e-16,0)
sum a = (3.469446951953614e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011172030513530089 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3481.2517852480455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.76954340681827, dt = 0.0011172030513530089 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.0122792321330962e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001116839528905808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3470.0057502578234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.770660609869624, dt = 0.001116839528905808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0469737016526324e-16,0)
sum a = (-3.122502256758253e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011165373480209772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.4605275641125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.771777449398529, dt = 0.0011165373480209772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.9949319973733282e-16,0)
sum a = (-3.8163916471489756e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011162965868311285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3436.71853937552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.77289398674655, dt = 0.0011162965868311285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.960237527853792e-16,0)
sum a = (-3.469446951953614e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011161173285268939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3404.392709636154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.774010283333381, dt = 0.0011161173285268939 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,1.9949319973733282e-16,0)
sum a = (2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011159996614054245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3499.5439493386075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.775126400661908, dt = 0.0011159996614054245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0122792321330962e-16,0)
sum a = (-6.938893903907228e-18,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011159436789161222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3279.5145222062997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.776242400323314, dt = 0.0011159436789161222 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0296264668928643e-16,0)
sum a = (-8.326672684688674e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011159494797035726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3467.742689153728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.77735834400223, dt = 0.0011159494797035726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.27 us (97.1%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,1.9949319973733282e-16,0)
sum a = (5.898059818321144e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011160171676476752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3371.0327166192665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.778474293481933, dt = 0.0011160171676476752 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0122792321330962e-16,0)
sum a = (-5.898059818321144e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011161468519009382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3482.423724367517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7795903106495805, dt = 0.0011161468519009382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,1.97758476261356e-16,0)
sum a = (-7.632783294297951e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011163386469229075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3481.22612416557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7807064575014815, dt = 0.0011163386469229075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.97758476261356e-16,0)
sum a = (-7.28583859910259e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011165926725117134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3470.8305226797042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.781822796148404, dt = 0.0011165926725117134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9949319973733282e-16,0)
sum a = (3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011169090538326837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3347.4515387157326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.782939388820916, dt = 0.0011169090538326837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,1.9949319973733282e-16,0)
sum a = (-1.3877787807814457e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011172879214439895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3496.0795835852614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7840562978747485, dt = 0.0011172879214439895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.0122792321330962e-16,0)
sum a = (6.938893903907228e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001117729411319297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3427.047474169456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.785173585796192, dt = 0.001117729411319297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0469737016526324e-16,0)
sum a = (-9.71445146547012e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011182336648673469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3426.6177978510063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.786291315207512, dt = 0.0011182336648673469 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0990154059319366e-16,0)
sum a = (4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011188008289484445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3553.6239809983767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.787409548872379, dt = 0.0011188008289484445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.77 us (94.2%)
LB move op cnt : 0
LB apply : 6.07 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0643209364124004e-16,0)
sum a = (-6.245004513516506e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001119431055887782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3292.7024147140114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.788528349701328, dt = 0.001119431055887782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0643209364124004e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.00112012450348555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3380.412332358075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.789647780757216, dt = 0.00112012450348555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 280.91 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0643209364124004e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001120881335023759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3264.9604819718265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.790767905260702, dt = 0.001120881335023759 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011217017192697177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3487.185945112689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.791888786595726, dt = 0.0011217017192697177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.1337098754514727e-16,0)
sum a = (-7.632783294297951e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011225858304760898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3363.552317822425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.793010488314995, dt = 0.0011225858304760898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.0990154059319366e-16,0)
sum a = (6.245004513516506e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011235338483774533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3539.964988221974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7941330741454715, dt = 0.0011235338483774533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.0816681711721685e-16,0)
sum a = (-6.938893903907228e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011245459581832788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3503.2036416412157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.795256607993849, dt = 0.0011245459581832788 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.1510571102112408e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011256223505672449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3500.586649389963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.796381153952033, dt = 0.0011256223505672449 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.1163626406917047e-16,0)
sum a = (4.85722573273506e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011267632216527973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3493.557701528972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7975067763026, dt = 0.0011267632216527973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0469737016526324e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.00112796877299486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3453.2511053969192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.798633539524253, dt = 0.00112796877299486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011292392115575885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3584.972488477939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.799761508297248, dt = 0.0011292392115575885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0122792321330962e-16,0)
sum a = (3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011305747496880734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3291.208432730336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.800890747508806, dt = 0.0011305747496880734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.1163626406917047e-16,0)
sum a = (4.85722573273506e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011319756050858715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.225e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3322.1257153280967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8020213222584935, dt = 0.0011319756050858715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 416.43 us (97.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011334420007682552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.336e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3049.694947830426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.803153297863579, dt = 0.0011334420007682552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.0469737016526324e-16,0)
sum a = (-6.245004513516506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011349741650310615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3479.062996350504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.804286739864347, dt = 0.0011349741650310615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0469737016526324e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011365723314050013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.315e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3106.428380683613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.805421714029378, dt = 0.0011365723314050013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.1163626406917047e-16,0)
sum a = (-5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011382367386073198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3513.4637221574426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.806558286360783, dt = 0.0011382367386073198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1163626406917047e-16,0)
sum a = (-6.245004513516506e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011399676304886456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3553.269978638986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.80769652309939, dt = 0.0011399676304886456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011417652559749087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3477.2897635300615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.808836490729879, dt = 0.0011417652559749087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001143629869004165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3456.016877955687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.809978255985854, dt = 0.001143629869004165 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1510571102112408e-16,0)
sum a = (-4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011455617284581747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3517.003436146543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.811121885854858, dt = 0.0011455617284581747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.86 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1163626406917047e-16,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011475610980885877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3502.8898026445045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8122674475833165, dt = 0.0011475610980885877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1163626406917047e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011496282464375516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3618.3100327381517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.813415008681405, dt = 0.0011496282464375516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0469737016526324e-16,0)
sum a = (8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001151763446752593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3469.0078758323784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.814564636927843, dt = 0.001151763446752593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1163626406917047e-16,0)
sum a = (-6.938893903907228e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011539669768955761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3469.6227736653277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.815716400374595, dt = 0.0011539669768955761 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 270.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.00115623911924557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3572.7975905665894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.81687036735149, dt = 0.00115623911924557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 227.64 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,1.97758476261356e-16,0)
sum a = (-8.326672684688674e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011585801605954343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3571.339807093542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8180266064707356, dt = 0.0011585801605954343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1510571102112408e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011609903920419178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3622.6951088779365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.819185186631331, dt = 0.0011609903920419178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.185751579730777e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001163470108869093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3574.7346136583633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.820346177023373, dt = 0.001163470108869093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1163626406917047e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011660196104248952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3550.731334087875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.821509647132242, dt = 0.0011660196104248952 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.0469737016526324e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011686391999905779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3629.720907665402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.822675666742667, dt = 0.0011686391999905779 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1163626406917047e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011713291846428481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627.3178840200785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.823844305942657, dt = 0.0011713291846428481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 266.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (1.6653345369377348e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011740898751084767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3568.2909957319243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8250156351273, dt = 0.0011740898751084767 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0816681711721685e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011769215856111382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3765.257372120767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.826189725002409, dt = 0.0011769215856111382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1163626406917047e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011798246337102608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3645.563553121201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.82736664658802, dt = 0.0011798246337102608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1510571102112408e-16,0)
sum a = (1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011827993401316338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3527.65625268429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.82854647122173, dt = 0.0011827993401316338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.185751579730777e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011858460285895404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3717.7054234674624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.829729270561862, dt = 0.0011858460285895404 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.220446049250313e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011889650256001526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3692.1763740624533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.830915116590452, dt = 0.0011889650256001526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.393918396847994e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011921566602859424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3674.159089622752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.832104081616052, dt = 0.0011921566602859424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011954212641708392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3686.9715919447376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.833296238276338, dt = 0.0011954212641708392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.3245294578089215e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.00119875917096588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3733.3419081003885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.834491659540509, dt = 0.00119875917096588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001202170716345069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3626.2118920666503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.835690418711475, dt = 0.001202170716345069 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012056562377111765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3796.7582110977896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.83689258942782, dt = 0.0012056562377111765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.3245294578089215e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012092160739512032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3783.261994083468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.838098245665531, dt = 0.0012092160739512032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3245294578089215e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001212850565181214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3742.6923467728284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.839307461739482, dt = 0.001212850565181214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.463307335887066e-16,0)
sum a = (-6.938893903907228e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012165600524802654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3804.3417382100542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.840520312304664, dt = 0.0012165600524802654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012203448776131366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3684.4335771573324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.841736872357144, dt = 0.0012203448776131366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.463307335887066e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012242053827415502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3691.0428108919614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8429572172347575, dt = 0.0012242053827415502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (1.8041124150158794e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.00122814191012362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3737.448420152903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.844181422617499, dt = 0.00122814191012362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012321548018011902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3827.0138895385853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.845409564527623, dt = 0.0012321548018011902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (-1.6653345369377348e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012362443992747967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3726.5406942568006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8466417193294244, dt = 0.0012362443992747967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.255140518769849e-16,0)
sum a = (-1.5265566588595902e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012404110431659236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3750.9406575737385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.847877963728699, dt = 0.0012404110431659236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 274.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.001244655072866273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3673.7468894953026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.849118374771865, dt = 0.001244655072866273 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.393918396847994e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012489768261737194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951.533352016381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.850363029844731, dt = 0.0012489768261737194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.463307335887066e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012533766389146719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3818.7224607838953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.851612006670905, dt = 0.0012533766389146719 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012578548445525265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.318e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3423.89747791679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.85286538330982, dt = 0.0012578548445525265 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 276.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012624117737819053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3717.9318796320185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.854123238154372, dt = 0.0012624117737819053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.40 us (5.5%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 324.30 us (92.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.5326962749261384e-16,0)
sum a = (8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012670477541083913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3622.6926224347303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.855385649928154, dt = 0.0012670477541083913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.463307335887066e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012717631094134594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3749.1734694166103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.856652697682263, dt = 0.0012717631094134594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.5326962749261384e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012765581595043198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3939.508600254055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.857924460791676, dt = 0.0012765581595043198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012814332196483653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3884.376206440153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.85920101895118, dt = 0.0012814332196483653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.5326962749261384e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012863886000919703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3956.468847838695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.860482452170828, dt = 0.0012863886000919703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012914246055633358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3969.3108691353596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.86176884077092, dt = 0.0012914246055633358 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.498001805406602e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012965415347591456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4004.831317645242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.863060265376483, dt = 0.0012965415347591456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.463307335887066e-16,0)
sum a = (9.71445146547012e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013017396798147439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3789.5458561708447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.864356806911243, dt = 0.0013017396798147439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013070193257576066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3988.7297445288505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.865658546591058, dt = 0.0013070193257576066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013123807499438626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4061.67660610674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.866965565916815, dt = 0.0013123807499438626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013178242214776413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4106.501203638304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.868277946666759, dt = 0.0013178242214776413 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013233500006130277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4087.9702937388433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.869595770888237, dt = 0.0013233500006130277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (9.71445146547012e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013289583381384407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4079.964238422176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.87091912088885, dt = 0.0013289583381384407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013346494747432465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4141.207463563681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.872248079226988, dt = 0.0013346494747432465 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013404236403664511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4017.826667175943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.873582728701732, dt = 0.0013404236403664511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.001346281053527325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4160.659964337949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.874923152342098, dt = 0.001346281053527325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 264.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013522219206378373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4164.0599121915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.876269433395625, dt = 0.0013522219206378373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001358246435296821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4307.79971584817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.877621655316263, dt = 0.001358246435296821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.42861286636753e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013643547775657654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4115.686961417432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.87897990175156, dt = 0.0013643547775657654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013705471132262209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4300.660814076795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.880344256529126, dt = 0.0013705471132262209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013768235930187746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4339.444072466167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.881714803642352, dt = 0.0013768235930187746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.12 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013831843518636246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4232.408333775302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8830916272353715, dt = 0.0013831843518636246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013896295080627929 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4358.369817496843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.884474811587235, dt = 0.0013896295080627929 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 273.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.00139615916248406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.224e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4086.2175331305916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.885864441095298, dt = 0.00139615916248406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014027733977267291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4220.213492918931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.887260600257782, dt = 0.0014027733977267291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 258.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014094722772693897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4351.900262593814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8886633736555085, dt = 0.0014094722772693897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 227.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014162558445998644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4475.11105814778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.890072845932778, dt = 0.0014162558445998644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.001423124122327583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4423.591558518544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.891489101777378, dt = 0.001423124122327583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014300771112786702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4495.176311026382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.892912225899705, dt = 0.0014300771112786702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001437114789574086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4550.786621871248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.894342303010983, dt = 0.001437114789574086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 289.85 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014442371116911744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4241.014216301917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.895779417800558, dt = 0.0014442371116911744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014514440075090943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4484.291601948384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.897223654912249, dt = 0.0014514440075090943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014587353813385968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4401.542230905605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8986750989197585, dt = 0.0014587353813385968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014661111109366954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4504.2816388484125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.900133834301097, dt = 0.0014661111109366954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 230.93 us (88.4%)
LB move op cnt : 0
LB apply : 23.02 us (8.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001473571046506848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4612.87427109691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.901599945412034, dt = 0.001473571046506848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.706168622523819e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014811150096853082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4643.50055708173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.903073516458541, dt = 0.0014811150096853082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014887427925143817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4610.666101893645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.904554631468226, dt = 0.0014887427925143817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014964541564033709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.212e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4422.537393542771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.906043374260741, dt = 0.0014964541564033709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015042488310781047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4766.481745845445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9075398284171445, dt = 0.0015042488310781047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015121265135199448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4668.607970323566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.909044077248223, dt = 0.0015121265135199448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015200868668953141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4672.914308462597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.910556203761742, dt = 0.0015200868668953141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 272.23 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015281295194768028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4497.6569637973535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9120762906286375, dt = 0.0015281295194768028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015362540635570224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4842.864335158663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.913604420148114, dt = 0.0015362540635570224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 255.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.706168622523819e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015444600543564303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4795.486444087733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.915140674211671, dt = 0.0015444600543564303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.636779683484747e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001552747008926453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4810.6901762400585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.916685134266027, dt = 0.001552747008926453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (-1.1102230246251565e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015611144050492799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4903.540647679527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.918237881274953, dt = 0.0015611144050492799 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015695616801358141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4862.8218655003475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.919798995680003, dt = 0.0015695616801358141 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015780882301233423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4758.694958845779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.921368557360139, dt = 0.0015780882301233423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015866934083745398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4949.721962635236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.922946645590262, dt = 0.0015866934083745398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.001595376524579556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4856.943875820397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9245333389986365, dt = 0.001595376524579556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 279.44 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016041368436629654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4836.962013700987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.926128715523216, dt = 0.0016041368436629654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 248.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016129735846974898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5010.909353512712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.927732852366879, dt = 0.0016129735846974898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.001621885919826455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5079.267457456426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.929345825951577, dt = 0.001621885919826455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016308729731970245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4915.881684017746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9309677118714035, dt = 0.0016308729731970245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 233.24 us (88.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.636779683484747e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016399338199063716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5010.02039757423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.932598584844601, dt = 0.0016399338199063716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 232.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.001649067484962976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5117.436871704335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9342385186645075, dt = 0.001649067484962976 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016582729422653648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5238.331456114943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.93588758614947, dt = 0.0016582729422653648 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016675491136006397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5074.796547784574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.937545859091736, dt = 0.0016675491136006397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.001676894867665261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5101.146223420991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.939213408205336, dt = 0.001676894867665261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.42861286636753e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001686309019110583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5030.7139488271505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.940890303073001, dt = 0.001686309019110583 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016957903276157249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5326.915287240682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.942576612092111, dt = 0.0016957903276157249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017053374969904311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5223.3299075662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.944272402419727, dt = 0.0017053374969904311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.42861286636753e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017149491743106184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5405.271067770474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.945977739916717, dt = 0.0017149491743106184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017246239490893585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5432.52698966982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.947692689091028, dt = 0.0017246239490893585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017343603524861333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5309.412294116377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.949417313040117, dt = 0.0017343603524861333 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017441568565571789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5411.856969707282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.951151673392603, dt = 0.0017441568565571789 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.220446049250313e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001754011873549826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5420.07284087637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.952895830249161, dt = 0.001754011873549826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017639237552437687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5519.000273377955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.954649842122711, dt = 0.0017639237552437687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.1510571102112408e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017738907923421777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5422.549605850402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.956413765877954, dt = 0.0017738907923421777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 225.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017839112139156432 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5644.06613823072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9581876566702965, dt = 0.0017839112139156432 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001793983186901904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.214e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5290.722790105694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.959971567884212, dt = 0.001793983186901904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018041048156643314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5658.737262680981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.961765551071114, dt = 0.0018041048156643314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018142741416121418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5647.784711058814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.963569655886778, dt = 0.0018142741416121418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.220446049250313e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.001824489142885259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5636.020511279321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.96538393002839, dt = 0.001824489142885259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018347477341067522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5619.797591612035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.967208419171276, dt = 0.0018347477341067522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.6%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.00184504776620573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5703.612994544561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.969043166905383, dt = 0.00184504776620573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.41 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.220446049250313e-16,0)
sum a = (5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018553870263135072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5650.858758851572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9708882146715885, dt = 0.0018553870263135072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018657632377358092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5641.222241887367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.972743601697902, dt = 0.0018657632377358092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.1510571102112408e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018761740600037361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5921.9090263343205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.974609364935637, dt = 0.0018761740600037361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 255.13 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018866170890060744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5627.992210744696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.976485538995641, dt = 0.0018866170890060744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018970898572054917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5835.018523081118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.978372156084648, dt = 0.0018970898572054917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001907589833941049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5675.524720122069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.980269245941853, dt = 0.001907589833941049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 297.35 us (97.2%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001918114425819305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.239e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5542.790476072993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.982176835775794, dt = 0.001918114425819305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 256.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019286609771962215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6031.806370500959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.984094950201613, dt = 0.0019286609771962215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019392267707518847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6044.075007883642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.986023611178809, dt = 0.0019392267707518847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.498001805406602e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019498090281599417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6073.2159336784525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.987962837949561, dt = 0.0019498090281599417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.498001805406602e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019604049108534792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6022.793186348877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.989912646977721, dt = 0.0019604049108534792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019710115208888958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5973.313267625103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.991873051888574, dt = 0.0019710115208888958 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001981625901909133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6209.290144266552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.993844063409464, dt = 0.001981625901909133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019922450402074542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6238.295956018741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.995825689311372, dt = 0.0019922450402074542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 274.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020028658658927377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5962.5888785081015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99781793435158, dt = 0.0020028658658927377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020134852541570324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6226.773358193724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.999820800217472, dt = 0.0020134852541570324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 271.19 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.3592239273284576e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020241000266459355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6253.885230681169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.001834285471629, dt = 0.0020241000266459355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.00203470695293208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6135.857335504743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.003858385498275, dt = 0.00203470695293208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (0.6%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 421.33 us (97.9%)
LB move op cnt : 0
LB apply : 1.83 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.2898349882893854e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002045302752091797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.354e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5407.978789161434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.005893092451207, dt = 0.002045302752091797 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-16,2.220446049250313e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020558840943847934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6255.120426401901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.007938395203299, dt = 0.0020558840943847934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020664476030363864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6467.705301347126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0099942792976835, dt = 0.0020664476030363864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020769898561216367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6368.789768217389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.01206072690072, dt = 0.0020769898561216367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0816681711721685e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020875073885503978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6521.314806853024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.014137716756841, dt = 0.0020875073885503978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0122792321330962e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020979966941520913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6411.099394109685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0162252241453915, dt = 0.0020979966941520913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.0816681711721685e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002108454227858721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6641.238295465162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.018323220839544, dt = 0.002108454227858721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002118876407984355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6499.478290753541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.020431675067402, dt = 0.002118876407984355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,2.0816681711721685e-16,0)
sum a = (0,-1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021292596185990766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6718.640787307857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.022550551475387, dt = 0.0021292596185990766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.3%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 242.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.214306433183765e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021396002119950953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.307e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5866.532549956472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.024679811093986, dt = 0.0021396002119950953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.1510571102112408e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021498945112424714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.169e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3551.6719877228365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.026819411305981, dt = 0.0021498945112424714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (0.8%)
patch tree reduce : 521.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 341.60 us (97.3%)
LB move op cnt : 0
LB apply : 2.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0755285551056204e-16,2.0122792321330962e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002160138812831622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.359e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.805679948379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.028969305817223, dt = 0.002160138812831622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,2.0816681711721685e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021703293893995234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6686.505687974383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0311294446300545, dt = 0.0021703293893995234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,2.0816681711721685e-16,0)
sum a = (0,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021804624925362824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.986e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3934.3616252702996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.033299774019454, dt = 0.0021804624925362824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (0.7%)
patch tree reduce : 470.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.1%)
LB compute : 450.96 us (97.8%)
LB move op cnt : 0
LB apply : 2.12 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.0816681711721685e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002190534355668474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.856e-03 | 0.4% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4230.115707025641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.03548023651199, dt = 0.002190534355668474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.0122792321330962e-16,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002200541197015427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6719.5851305428005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.037670770867659, dt = 0.002200541197015427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,2.0122792321330962e-16,0)
sum a = (0,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022104792226143822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6753.452458057509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.039871312064674, dt = 0.0022104792226143822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.002220344629410253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6879.191759045158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.042081791287289, dt = 0.002220344629410253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.491862189340054e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002230133608405468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6798.667240968125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.044302135916699, dt = 0.002230133608405468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 264.93 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022398423478652077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.220e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6578.511311985058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0465322695251045, dt = 0.0022398423478652077 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4224732503009818e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022494670365731453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 2.1% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7056.560115652722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.04877211187297, dt = 0.0022494670365731453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 292.85 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022590038671326082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6626.457721499541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.051021578909543, dt = 0.0022590038671326082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022684490393079446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6813.115435610363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.053280582776676, dt = 0.0022684490393079446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,2.0122792321330962e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002277798763400717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6807.434731241413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.055549031815984, dt = 0.002277798763400717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 239.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002287049263655204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7070.389866536912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.057826830579384, dt = 0.002287049263655204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3010426069826053e-16,2.0816681711721685e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022961967816875943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7089.238119770805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.06011387984304, dt = 0.0022961967816875943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023052375799331435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7283.14886556399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.062410076624727, dt = 0.0023052375799331435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,2.1510571102112408e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023141679451054945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7258.895155514255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.06471531420466, dt = 0.0023141679451054945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-7.28583859910259e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.002322984191662269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7018.189156882497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.067029482149765, dt = 0.002322984191662269 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.98 us (95.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023316826652710343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7289.61038654006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.069352466341427, dt = 0.0023316826652710343 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 230.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.220446049250313e-16,0)
sum a = (0,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002340259746269687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7262.237829282107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.071684149006698, dt = 0.002340259746269687 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023487118531152723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7039.745486440446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.074024408752968, dt = 0.0023487118531152723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.002357035445815321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.235e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6849.181633814129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.076373120606084, dt = 0.002357035445815321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836953722228372e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023652270293357236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7257.528041060674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.078730156051899, dt = 0.0023652270293357236 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.23 us (97.0%)
LB move op cnt : 0
LB apply : 1.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,2.1510571102112408e-16,0)
sum a = (5.551115123125783e-17,-1.214306433183765e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002373283156979288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7054.734234719816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.081095383081235, dt = 0.002373283156979288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 246.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.465841337200402e-16,2.1510571102112408e-16,0)
sum a = (0,2.6020852139652106e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.002381200433729115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7304.432479699879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.083468666238214, dt = 0.002381200433729115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3357370765021415e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-1.734723475976807e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023889755195510474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7392.436887173684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.085849866671943, dt = 0.0023889755195510474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3444106938820255e-16,2.0816681711721685e-16,0)
sum a = (8.326672684688674e-17,-3.122502256758253e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.002396605132649513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7345.432818531488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.088238842191494, dt = 0.002396605132649513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2576745200831851e-16,2.0816681711721685e-16,0)
sum a = (0,-8.239936510889834e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024040860526711953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7545.675754598534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.090635447324144, dt = 0.0024040860526711953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-1.1058862159352145e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.002411415123851096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7185.366922306853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.093039533376815, dt = 0.002411415123851096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2923689896027213e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-7.806255641895632e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024185892580956755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7545.031506846553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.095450948500666, dt = 0.0024185892580956755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3140530330524314e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-8.673617379884035e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002425605437997906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7568.070510633754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.097869537758761, dt = 0.002425605437997906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.6%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 371.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.1%)
LB compute : 420.11 us (97.7%)
LB move op cnt : 0
LB apply : 2.21 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3791051634015616e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024324607197792787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.366e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6394.05799551463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.100295143196759, dt = 0.0024324607197792787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3747683547116196e-16,1.942890293094024e-16,0)
sum a = (0,-7.45931094670027e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024391522361538968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7587.890885116943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.102727603916539, dt = 0.0024391522361538968 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3227266504323154e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-9.540979117872439e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.00244567719911007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7699.128154858545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.105166756152693, dt = 0.00244567719911007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 237.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3248950547772864e-16,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,1.214306433183765e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024520329026049546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7350.820511472981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.107612433351803, dt = 0.0024520329026049546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.319474043914859e-16,1.942890293094024e-16,0)
sum a = (0,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024582167251680207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7601.173200418351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.110064466254408, dt = 0.0024582167251680207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.308089921103761e-16,2.0122792321330962e-16,0)
sum a = (8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002464226132409355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7554.710402352122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.112522682979576, dt = 0.002464226132409355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2479167005308156e-16,1.942890293094024e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002470058679428992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7513.730862871307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.114986909111986, dt = 0.002470058679428992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024757120131237596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7719.315318504796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.117456967791415, dt = 0.0024757120131237596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.231653667943533e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024811838743882967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7637.085894859204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.119932679804538, dt = 0.0024811838743882967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 268.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2576745200831851e-16,1.8735013540549517e-16,0)
sum a = (-5.551115123125783e-17,3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024864721002072045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7661.068510859467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1224138636789265, dt = 0.0024864721002072045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 230.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2620113287731272e-16,1.942890293094024e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024915746256355085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7772.431550228178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.124900335779134, dt = 0.0024915746256355085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002496489485664852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7846.751440625655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.127391910404769, dt = 0.002496489485664852 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1839487723541708e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025012148169731227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7857.954118805753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.129888399890434, dt = 0.0025012148169731227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.205632815803881e-16,1.942890293094024e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025057488595554675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7732.8194431495085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.132389614707407, dt = 0.0025057488595554675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 265.37 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025100899582348756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.216e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7418.744202517478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1348953635669625, dt = 0.0025100899582348756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3530843112619095e-16,1.942890293094024e-16,0)
sum a = (0,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025142365640508074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7460.920617564365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.137405453525197, dt = 0.0025142365640508074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43982048506075e-16,2.0816681711721685e-16,0)
sum a = (0,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.00251818723552457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7718.814443685097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.139919690089248, dt = 0.00251818723552457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025219406398004226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7866.917672771087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.142437877324772, dt = 0.0025219406398004226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4051260155412137e-16,2.0122792321330962e-16,0)
sum a = (0,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025254955536616105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7668.697496314323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.144959817964573, dt = 0.0025254955536616105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.72 us (95.1%)
LB move op cnt : 0
LB apply : 5.20 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.002528850864420829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7731.5821999151285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.147485313518234, dt = 0.002528850864420829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 281.54 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.0122792321330962e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025320055706848097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.247e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7302.8959433303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.150014164382655, dt = 0.0025320055706848097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3704315460216776e-16,2.0816681711721685e-16,0)
sum a = (0,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025349587829929868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7800.827436397032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1525461699533395, dt = 0.0025349587829929868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.33 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,2.0122792321330962e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025377097243304346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7616.243592540828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.155081128736333, dt = 0.0025377097243304346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025402577305155207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7783.298011857209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.157618838460663, dt = 0.0025402577305155207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 276.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2663481374630692e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025426022504629014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7665.360035754534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.160159096191179, dt = 0.0025426022504629014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1449174941446927e-16,2.0122792321330962e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.002544742846322717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7747.977888438383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.162701698441642, dt = 0.002544742846322717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,1.942890293094024e-16,0)
sum a = (2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025466791934971064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7748.388123995011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.165246441287964, dt = 0.0025466791934971064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002548411080535276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8007.299022927054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.167793120481461, dt = 0.002548411080535276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0234868508263162e-16,2.0816681711721685e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002549938408908639 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7923.041486252114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.170341531561996, dt = 0.002549938408908639 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 551.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025512611926676834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7803.485362221463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.172891469970905, dt = 0.0025512611926676834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002552379557982423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8098.670546701873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.175442731163573, dt = 0.002552379557982423 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.78 us (94.5%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0928757898653885e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025532937425684498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.248e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7364.8699474734085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.177995110721555, dt = 0.0025532937425684498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1275702593849246e-16,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025540040950007936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8140.005909607003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1805484044641235, dt = 0.0025540040950007936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 267.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0234868508263162e-16,2.1510571102112408e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.00255451107391794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7752.614506535424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.183102408559124, dt = 0.00255451107391794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.540979117872439e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002554815247118464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7942.417992186115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.185656919633042, dt = 0.002554815247118464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025549172905529856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7952.725410204115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.188211734880161, dt = 0.0025549172905529856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.1510571102112408e-16,0)
sum a = (8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002554817987214153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8008.824312149416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.190766652170714, dt = 0.002554817987214153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002554518225927557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7966.393554687715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.193321470157928, dt = 0.002554518225927557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025540190000466127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7826.69562585731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.195875988383856, dt = 0.0025540190000466127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.0122792321330962e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002553321406054468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7928.3299619106065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1984300073839025, dt = 0.002553321406054468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.1510571102112408e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025524266420761626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7892.4155882771365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.200983328789957, dt = 0.0025524266420761626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002551336006304336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7919.419304731176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.203535755432033, dt = 0.002551336006304336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.03 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002550050895341831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7798.130466824026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.206087091438337, dt = 0.002550050895341831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025485728024646436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7941.877708970242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.208637142333679, dt = 0.0025485728024646436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025469033158087044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8089.20930768792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.211185715136144, dt = 0.0025469033158087044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.002545044116484053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7972.020475017442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.213732618451952, dt = 0.002545044116484053 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025429969766200006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8105.286231728779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.216277662568436, dt = 0.0025429969766200006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025407637573448836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8111.130016596527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.218820659545057, dt = 0.0025407637573448836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.55 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.2898349882893854e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025383464067041134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7988.148472054757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.221361423302402, dt = 0.0025383464067041134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 263.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.1510571102112408e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025357469575201536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.259e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7256.144277366875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.223899769709106, dt = 0.0025357469575201536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.002532967525198161 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7913.383294271511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.226435516666625, dt = 0.002532967525198161 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 268.93 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.002530010305480943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7755.452854336647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.228968484191824, dt = 0.002530010305480943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025268775721569597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7740.920815437749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.231498494497305, dt = 0.0025268775721569597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.28 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002523571674725042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7963.72087261391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.234025372069461, dt = 0.002523571674725042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002520095036019505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8040.750495649121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.236548943744187, dt = 0.002520095036019505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.002516450149799278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7988.164481718005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.239069038780206, dt = 0.002516450149799278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025126395783047054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7934.963211604437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2415854889300055, dt = 0.0025126395783047054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025086659497855755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7655.896093718315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.24409812850831, dt = 0.0025086659497855755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.64 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025045319560039127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7534.788435865236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.246606794458096, dt = 0.0025045319560039127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002500240349715044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7951.322815084484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.249111326414099, dt = 0.002500240349715044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.22 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.42861286636753e-16,0)
sum a = (1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024957939421303703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7588.193954960944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.251611566763814, dt = 0.0024957939421303703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 227.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024911956003651997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7793.233780467022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2541073607059445, dt = 0.0024911956003651997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024864482448750005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7666.088676161238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.25659855630631, dt = 0.0024864482448750005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.498001805406602e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024815548468832727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7871.025610823085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.259085004551185, dt = 0.0024815548468832727 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 241.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.002476518425804241 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.6% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7604.906252818583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2615665593980685, dt = 0.002476518425804241 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002471342046663443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7607.760732777423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.264043077823873, dt = 0.002471342046663443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.5673907444456745e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002466028817519221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7635.926154026335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2665144198705365, dt = 0.002466028817519221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002460581886888049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7561.838055652825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.268980448688056, dt = 0.002460581886888049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.7755575615628914e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.002455004441176505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7849.511110241983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.271441030574944, dt = 0.002455004441176505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.40 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.706168622523819e-16,0)
sum a = (1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024492997021226207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7562.165274027814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.27389603501612, dt = 0.0024492997021226207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.706168622523819e-16,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.00244347092424927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7604.965968518715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.276345334718243, dt = 0.00244347092424927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 269.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.002437521392332074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7654.124847876633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.278788805642493, dt = 0.002437521392332074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002431454418884292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7381.762044696885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.281226327034825, dt = 0.002431454418884292 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.7755575615628914e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.002425273341660975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7651.978470470304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.28365778145371, dt = 0.002425273341660975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 530.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.914335439641036e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024189815211846173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7423.876876149601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2860830547953706, dt = 0.0024189815211846173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 222.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.914335439641036e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024125823382943608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7674.562264653527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.288502036316555, dt = 0.0024125823382943608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (0.3%)
patch tree reduce : 541.00 ns (0.1%)
gen split merge : 411.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.0%)
LB compute : 993.35 us (99.0%)
LB move op cnt : 0
LB apply : 2.26 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (72.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.983724378680108e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.002406079191720731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.931e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4497.9349138972375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.29091461865485, dt = 0.002406079191720731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.0531133177191805e-16,0)
sum a = (1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023994754956877633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7496.293854977964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.29332069784657, dt = 0.0023994754956877633 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 270.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.82 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.122502256758253e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023927746775442406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7407.058638720586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.295720173342258, dt = 0.0023927746775442406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.0531133177191805e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023859801754256356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7490.294811533074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.298112948019802, dt = 0.0023859801754256356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.0531133177191805e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.002379095435948243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7611.733019571192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3004989281952275, dt = 0.002379095435948243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.0531133177191805e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023721239119368683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7541.2257825311935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.302878023631176, dt = 0.0023721239119368683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.122502256758253e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002365069060187254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7520.789665419074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.305250147543113, dt = 0.002365069060187254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 265.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.122502256758253e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023579343392643877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.222e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6964.706001852059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3076152166033, dt = 0.0023579343392643877 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.0531133177191805e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.002350723207337608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7401.09162458502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3099731509425645, dt = 0.002350723207337608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 273.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,3.0531133177191805e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023434391200533628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7180.448331454255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.312323874149902, dt = 0.0023434391200533628 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 251.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,3.0531133177191805e-16,0)
sum a = (-1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023360855284463074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.323e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6375.297993331861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.314667313269955, dt = 0.0023360855284463074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,3.122502256758253e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023286658768893096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7142.657592368659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.317003398798401, dt = 0.0023286658768893096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.00232118360108278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7312.035186260635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.31933206467529, dt = 0.00232118360108278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.2612801348363973e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002313642126083636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7197.034600754483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.321653248276373, dt = 0.002313642126083636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (60.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.002306044864374049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7355.2994305005395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.323966890402457, dt = 0.002306044864374049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.7%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 388.33 us (97.6%)
LB move op cnt : 0
LB apply : 2.22 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.2612801348363973e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.002298395213969989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.317e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6305.646162534617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.326272935266831, dt = 0.002298395213969989 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.400058012914542e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022906965565694846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7058.290982701903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.328571330480801, dt = 0.0022906965565694846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.2612801348363973e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002282952255740319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7110.7256215682855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.33086202703737, dt = 0.002282952255740319 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,3.191891195797325e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.002275165655146798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7258.630663617723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3331449792931105, dt = 0.002275165655146798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,3.191891195797325e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002267340076815073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6884.745941555766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.335420144948257, dt = 0.002267340076815073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,3.122502256758253e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.002259478819436363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7111.457526047355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.337687485025072, dt = 0.002259478819436363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.983724378680108e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022515851567072973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7183.29282818283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3399469638445085, dt = 0.0022515851567072973 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.91 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.983724378680108e-16,0)
sum a = (9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002243662335706466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7037.773673594083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.342198549001216, dt = 0.002243662335706466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.0531133177191805e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022357135753061173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6860.239638780386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.344442211336922, dt = 0.0022357135753061173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.983724378680108e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.002227742064617845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7114.543183764663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.346677924912228, dt = 0.002227742064617845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,3.122502256758253e-16,0)
sum a = (1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022197509614709336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7062.842190171607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.348905666976846, dt = 0.0022197509614709336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,3.0531133177191805e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.002211743390921967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7081.863062678116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.351125417938317, dt = 0.002211743390921967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.983724378680108e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022037224437940865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6825.841805175424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3533371613292395, dt = 0.0022037224437940865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.983724378680108e-16,0)
sum a = (1.3877787807814457e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021956911752442805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6985.207743000583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.355540883773034, dt = 0.0021956911752442805 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.002187652603356854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6858.468853662997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.357736574948278, dt = 0.002187652603356854 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.002179609707761182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6757.291893861438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.359924227551636, dt = 0.002179609707761182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.7755575615628914e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002171565428271718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6616.367435993864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.362103837259397, dt = 0.002171565428271718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.8449465006019636e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021635226635481064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6725.819767311047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.364275402687669, dt = 0.0021635226635481064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 245.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.8102520310824275e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.002155484269773153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6645.627084595648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3664389253512175, dt = 0.002155484269773153 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.8102520310824275e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.002147453059346323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6555.874943549474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.36859440962099, dt = 0.002147453059346323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.914335439641036e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.002139431799590303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6677.957519320599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.370741862680337, dt = 0.002139431799590303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.914335439641036e-16,0)
sum a = (1.5265566588595902e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021314232114681177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6680.012730889899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.372881294479927, dt = 0.0021314232114681177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.06 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.740863092043355e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002123429968308196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.3997151952735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.375012717691395, dt = 0.002123429968308196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 236.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.671474153004283e-16,0)
sum a = (1.249000902703301e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.002115454694534701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6566.434783950165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.377136147659703, dt = 0.002115454694534701 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.5673907444456745e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002107499964400398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6704.655274247141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.379251602354238, dt = 0.002107499964400398 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.00 us (3.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 258.22 us (93.3%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.636779683484747e-16,0)
sum a = (1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020995683007192663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.7% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6452.144993265883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.381359102318638, dt = 0.0020995683007192663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.6020852139652106e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020916621735960553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6409.94957706781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3834586706193575, dt = 0.0020916621735960553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.69 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.393918396847994e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002083783999149912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6356.696557791443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3855503327929535, dt = 0.002083783999149912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.393918396847994e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.00207593613822927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6525.879430387565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.387634116792103, dt = 0.00207593613822927 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002068120895115136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6555.46704633105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.389710052930333, dt = 0.002068120895115136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.463307335887066e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020603405162100017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6366.735667314144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.391778173825448, dt = 0.0020603405162100017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 238.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.393918396847994e-16,0)
sum a = (1.249000902703301e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002052597188709614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6378.521846744709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.393838514341658, dt = 0.002052597188709614 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.463307335887066e-16,0)
sum a = (4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.002044893039254981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6471.871489515006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.395891111530368, dt = 0.002044893039254981 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.463307335887066e-16,0)
sum a = (6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020372301325620283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6410.680272427175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.3979360045696225, dt = 0.0020372301325620283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.42861286636753e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020296104700265392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6097.777302474273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.399973234702185, dt = 0.0020296104700265392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 246.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.463307335887066e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020220359883021282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6354.784434309151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.402002845172212, dt = 0.0020220359883021282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 276.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.5673907444456745e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002014508557849274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6235.500533139565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.404024881160514, dt = 0.002014508557849274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.5326962749261384e-16,0)
sum a = (-7.632783294297951e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002007029981453638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6229.39525445255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.406039389718363, dt = 0.002007029981453638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.6020852139652106e-16,0)
sum a = (1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019996019927122563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6220.610853649338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.408046419699817, dt = 0.0019996019927122563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.41 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.498001805406602e-16,0)
sum a = (-9.020562075079397e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019922262544865327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6088.767518218447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.410046021692529, dt = 0.0019922262544865327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 371.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019849043573213613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6214.771852089697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.412038247947016, dt = 0.0019849043573213613 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.498001805406602e-16,0)
sum a = (1.1102230246251565e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019776378178302263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6261.6212179439235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.414023152304337, dt = 0.0019776378178302263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.3592239273284576e-16,0)
sum a = (-9.020562075079397e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019704280770466254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6234.316689088573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.416000790122168, dt = 0.0019704280770466254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.463307335887066e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.001963276498742819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5622.663540500104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.417971218199215, dt = 0.001963276498742819 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.463307335887066e-16,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019561843677175874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6104.852578808386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.419934494697958, dt = 0.0019561843677175874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.463307335887066e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019491528880554408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6026.167514494362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.421890679065675, dt = 0.0019491528880554408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 245.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.463307335887066e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019421831813606176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5949.573171703323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.423839831953731, dt = 0.0019421831813606176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.3245294578089215e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.001935276284970147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.231865772426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.425782015135091, dt = 0.001935276284970147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.463307335887066e-16,0)
sum a = (9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001928433150151304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5985.364861742457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.427717291420062, dt = 0.001928433150151304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.42861286636753e-16,0)
sum a = (-6.245004513516506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.001921654640289955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5989.511857226033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.429645724570213, dt = 0.001921654640289955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.393918396847994e-16,0)
sum a = (3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019149415290775195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5726.463001291184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.431567379210503, dt = 0.0019149415290775195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.3245294578089215e-16,0)
sum a = (4.85722573273506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019082944987056849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5929.769145403403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.43348232073958, dt = 0.0019082944987056849 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.255140518769849e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019017141380794271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6053.16158159067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.435390615238286, dt = 0.0019017141380794271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.17 us (96.9%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.185751579730777e-16,0)
sum a = (9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018952009410605128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5761.6982843140595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4372923293763655, dt = 0.0018952009410605128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.1163626406917047e-16,0)
sum a = (1.1796119636642288e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018887553047553195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5770.330509495971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.439187530317426, dt = 0.0018887553047553195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (9.020562075079397e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001882377527862597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5989.2248840995535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.441076285622182, dt = 0.001882377527862597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.27 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001876067809098667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5735.565443450051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.442958663150044, dt = 0.001876067809098667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.1510571102112408e-16,0)
sum a = (6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018698262457195049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5863.714639356905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.444834730959143, dt = 0.0018698262457195049 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 268.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.185751579730777e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001863652832161198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5797.411493058495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.446704557204862, dt = 0.001863652832161198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018575474588223102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.607473185207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.448568210037023, dt = 0.0018575474588223102 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0469737016526324e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018515099110138439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5768.298246058012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.450425757495846, dt = 0.0018515099110138439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0816681711721685e-16,0)
sum a = (-3.122502256758253e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018455398681045162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5668.673191649725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.45227726740686, dt = 0.0018455398681045162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0469737016526324e-16,0)
sum a = (3.122502256758253e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018396369028912455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5704.929280408809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.454122807274964, dt = 0.0018396369028912455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.06 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.942890293094024e-16,0)
sum a = (7.979727989493313e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001833800481226657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5656.22499753045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.455962444177856, dt = 0.001833800481226657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.9081958235744878e-16,0)
sum a = (3.469446951953614e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018280299619373905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5726.922894843148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.457796244659082, dt = 0.0018280299619373905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 279.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8735013540549517e-16,0)
sum a = (1.0408340855860843e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018223245970686917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5577.678686099347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.45962427462102, dt = 0.0018223245970686917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8041124150158794e-16,0)
sum a = (7.979727989493313e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018166835324923154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5723.571019285684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.461446599218089, dt = 0.0018166835324923154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 224.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8041124150158794e-16,0)
sum a = (7.979727989493313e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018111058089160022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5695.250098379163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.463263282750582, dt = 0.0018111058089160022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 238.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.8735013540549517e-16,0)
sum a = (-1.734723475976807e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018055903633337272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5547.895335157343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.465074388559498, dt = 0.0018055903633337272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 251.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.97758476261356e-16,0)
sum a = (1.0408340855860843e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018001360309563726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5602.257155884901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.466879978922831, dt = 0.0018001360309563726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.960237527853792e-16,0)
sum a = (5.898059818321144e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017947415476624747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5603.381239293803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.468680114953788, dt = 0.0017947415476624747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0469737016526324e-16,0)
sum a = (1.734723475976807e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017894055530081865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5642.209993079316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4704748565014505, dt = 0.0017894055530081865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 273.11 us (96.9%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0296264668928643e-16,0)
sum a = (-2.42861286636753e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017841265938342461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5347.219908849144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.472264262054459, dt = 0.0017841265938342461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.9949319973733282e-16,0)
sum a = (9.71445146547012e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017789031285059046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5493.25898591228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.474048388648293, dt = 0.0017789031285059046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.09 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017737335318189064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5540.843286947677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.475827291776799, dt = 0.0017737335318189064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.93 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.942890293094024e-16,0)
sum a = (6.938893903907228e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.001768616100600965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5671.838370023549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.477601025308618, dt = 0.001768616100600965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.960237527853792e-16,0)
sum a = (3.469446951953614e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017635490600335982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5459.253320097639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.479369641409219, dt = 0.0017635490600335982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.9081958235744878e-16,0)
sum a = (3.8163916471489756e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017585305707135171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5468.32207829472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.481133190469253, dt = 0.0017585305707135171 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.81 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8908485888147197e-16,0)
sum a = (4.85722573273506e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017535587364661462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5463.414807532161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.482891721039966, dt = 0.0017535587364661462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8561541192951836e-16,0)
sum a = (-8.673617379884035e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017486316129161107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5469.724522546392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.484645279776432, dt = 0.0017486316129161107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8735013540549517e-16,0)
sum a = (4.5102810375396984e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017437472168107867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5573.9595159947285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.486393911389348, dt = 0.0017437472168107867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.9081958235744878e-16,0)
sum a = (-5.0306980803327406e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017389035360832032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5292.649617620806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.488137658606158, dt = 0.0017389035360832032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 571.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8735013540549517e-16,0)
sum a = (4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017340985406298897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5451.6494409054285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.489876562142241, dt = 0.0017340985406298897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.942890293094024e-16,0)
sum a = (-2.6020852139652106e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017293301937676686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5425.604458737194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.491610660682871, dt = 0.0017293301937676686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.97758476261356e-16,0)
sum a = (8.500145032286355e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017245964643211303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5260.311091627734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.493339990876638, dt = 0.0017245964643211303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (6.245004513516506e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017198953392796915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5240.235580119303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.495064587340959, dt = 0.0017198953392796915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.9949319973733282e-16,0)
sum a = (2.6020852139652106e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017152248369500338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5380.646760949777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.496784482680239, dt = 0.0017152248369500338 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.9949319973733282e-16,0)
sum a = (1.734723475976807e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.001710583020516522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.332e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4634.949432844919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.498499707517189, dt = 0.001710583020516522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.9949319973733282e-16,0)
sum a = (-1.1275702593849246e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.001705968011909205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5356.59667062981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.500210290537705, dt = 0.001705968011909205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.97758476261356e-16,0)
sum a = (1.8214596497756474e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017013780058666203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5319.338519912501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.501916258549614, dt = 0.0017013780058666203 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.97758476261356e-16,0)
sum a = (-1.9081958235744878e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016968112840690162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5179.802296142678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5036176365554805, dt = 0.0016968112840690162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.9949319973733282e-16,0)
sum a = (-4.336808689942018e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.00169226622920732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5334.253698335116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.50531444783955, dt = 0.00169226622920732 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.36 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.97758476261356e-16,0)
sum a = (2.949029909160572e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016877413388444221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5115.52319823258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.507006714068757, dt = 0.0016877413388444221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 230.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.97758476261356e-16,0)
sum a = (-3.642919299551295e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016832352389185474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5337.397215849424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.508694455407601, dt = 0.0016832352389185474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.48 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.960237527853792e-16,0)
sum a = (2.5587171270657905e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016787466967339356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5074.350143954783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.51037769064652, dt = 0.0016787466967339356 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,1.960237527853792e-16,0)
sum a = (-7.806255641895632e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016742746332820495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5333.079283099102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5120564373432535, dt = 0.0016742746332820495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 222.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,1.951563910473908e-16,0)
sum a = (-2.1033522146218786e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016698181347373335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5137.593456332741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.513730711976535, dt = 0.0016698181347373335 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,1.942890293094024e-16,0)
sum a = (-2.0274580625478933e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.001665376462975266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5185.113072319504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.515400530111273, dt = 0.001665376462975266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 223.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,1.93421667571414e-16,0)
sum a = (2.1236810053559818e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001660949064967354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5290.931260544574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.517065906574248, dt = 0.001660949064967354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.93421667571414e-16,0)
sum a = (1.1492543028346347e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.00165653558091754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5245.465812001423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5187268556392155, dt = 0.00165653558091754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 234.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,1.942890293094024e-16,0)
sum a = (9.974659986866641e-18,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016521358510175395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5189.747168042363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.520383391220133, dt = 0.0016521358510175395 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.93421667571414e-16,0)
sum a = (-2.168404344971009e-18,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016477499207143698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5054.983952615243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.522035527071151, dt = 0.0016477499207143698 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.942890293094024e-16,0)
sum a = (3.0357660829594124e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016433780444017724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5067.890300850612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.523683276991865, dt = 0.0016433780444017724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 270.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.951563910473908e-16,0)
sum a = (1.2576745200831851e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016390206874679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5027.888862412778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.525326655036267, dt = 0.0016390206874679 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.942890293094024e-16,0)
sum a = (3.469446951953614e-18,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016346785266541195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5196.215763772994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.526965675723734, dt = 0.0016346785266541195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 225.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.951563910473908e-16,0)
sum a = (-8.673617379884035e-19,2.498001805406602e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016303524487036533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5211.279596790111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.528600354250389, dt = 0.0016303524487036533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.960237527853792e-16,0)
sum a = (-3.469446951953614e-18,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016260435473033537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5069.622110912578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.530230706699093, dt = 0.0016260435473033537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.960237527853792e-16,0)
sum a = (8.673617379884035e-19,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016217531183467717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5100.8463454691055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.531856750246396, dt = 0.0016217531183467717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.42 us (8.6%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 233.69 us (89.2%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.968911145233676e-16,0)
sum a = (8.673617379884035e-19,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016174826535710874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4862.528235014981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5334785033647425, dt = 0.0016174826535710874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.960237527853792e-16,0)
sum a = (-2.6020852139652106e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016132338326439242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5154.907885115864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.535095986018313, dt = 0.0016132338326439242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.89 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.968911145233676e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016090085137979969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.221e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4756.494553214212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.536709219850957, dt = 0.0016090085137979969 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.960237527853792e-16,0)
sum a = (1.734723475976807e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016048087231313774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5100.708295583784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.538318228364755, dt = 0.0016048087231313774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,1.964574336543734e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016006366427085412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5110.751818808498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5399230370878865, dt = 0.0016006366427085412 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.3%)
patch tree reduce : 611.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,1.964574336543734e-16,0)
sum a = (0,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015964945976118827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4992.554793372895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.541523673730595, dt = 0.0015964945976118827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.973247953923618e-16,0)
sum a = (-1.214306433183765e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015923850421047231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5070.745361155543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5431201683282065, dt = 0.0015923850421047231 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.960237527853792e-16,0)
sum a = (5.204170427930421e-18,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015883105450749523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4989.074375539154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.544712553370311, dt = 0.0015883105450749523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.964574336543734e-16,0)
sum a = (-5.204170427930421e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015842737749331252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5000.509819933438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.546300863915386, dt = 0.0015842737749331252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,1.981921571303502e-16,0)
sum a = (-2.0816681711721685e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015802774841402062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4862.71047706355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.547885137690319, dt = 0.0015802774841402062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 237.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,1.968911145233676e-16,0)
sum a = (-1.9081958235744878e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015763244935382622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4934.2338604422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.549465415174459, dt = 0.0015763244935382622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0036056147532122e-16,0)
sum a = (-3.8163916471489756e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.00157241767665256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4607.070397886704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.551041739667997, dt = 0.00157241767665256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0209528495129803e-16,0)
sum a = (3.469446951953614e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015685599441258636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4892.8154012467485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5526141573446495, dt = 0.0015685599441258636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.93 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0187844451680093e-16,0)
sum a = (0,2.7755575615628914e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015647542284357048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.223e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4618.826646315826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.554182717288775, dt = 0.0015647542284357048 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.9971004017182992e-16,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015610034690333552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4929.584623273445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.55574747151721, dt = 0.0015610034690333552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.49 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.9949319973733282e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015573105980295123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4800.756973127643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.557308474986244, dt = 0.0015573105980295123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0415526907902048e-16,0)
sum a = (-5.551115123125783e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001553678526536862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4903.169346441156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.558865785584273, dt = 0.001553678526536862 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.093594395069509e-16,0)
sum a = (-5.898059818321144e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015501101317639506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4788.476901958801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.56041946411081, dt = 0.0015501101317639506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 258.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,2.07407875596477e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015466082449387456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4852.143159660011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.561969574242574, dt = 0.0015466082449387456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,2.018343988035437e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015431756401241446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4903.934289184059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.563516182487513, dt = 0.0015431756401241446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 247.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0101108277881252e-16,0)
sum a = (-1.0408340855860843e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015398150239718893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4821.318989786126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5650593581276375, dt = 0.0015398150239718893 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,2.0139055353918245e-16,0)
sum a = (-3.122502256758253e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015365290264461315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4869.416571619769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.56659917315161, dt = 0.0015365290264461315 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,2.063236734239915e-16,0)
sum a = (-5.204170427930421e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001533320192533568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4698.865524300097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.568135702178056, dt = 0.001533320192533568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0794997668271975e-16,0)
sum a = (3.122502256758253e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015301909749437348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4722.129949613795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.569669022370589, dt = 0.0015301909749437348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0751629581372555e-16,0)
sum a = (-7.28583859910259e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001527143727790965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.195e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4611.698346339394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.571199213345533, dt = 0.001527143727790965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.1467203015212988e-16,0)
sum a = (2.0816681711721685e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015241807012387027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4788.051568735737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.572726357073324, dt = 0.0015241807012387027 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0708261494473135e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015213040370774492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4734.844688220493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.574250537774563, dt = 0.0015213040370774492 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1337098754514727e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015185157651995706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4668.080323654703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.57577184181164, dt = 0.0015185157651995706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.1337098754514727e-16,0)
sum a = (-1.0408340855860843e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001515817800927533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4578.0484035019235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.57729035757684, dt = 0.001515817800927533 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 273.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.1076890233118206e-16,0)
sum a = (-1.0408340855860843e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015132119431468022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4616.668809915253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.578806175377768, dt = 0.0015132119431468022 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (61.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.1120258320017626e-16,0)
sum a = (-1.734723475976807e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015106998731906044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4692.130056269154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.580319387320914, dt = 0.0015106998731906044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0773313624822265e-16,0)
sum a = (-5.204170427930421e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015082831544208568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4514.11088768439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5818300871941045, dt = 0.0015082831544208568 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0643209364124004e-16,0)
sum a = (-1.1449174941446927e-16,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.001505963232447807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4794.766868484869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5833383703485255, dt = 0.001505963232447807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.0122792321330962e-16,0)
sum a = (2.42861286636753e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001503741435930113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4775.352846037535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.584844333580973, dt = 0.001503741435930113 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0426368929626904e-16,0)
sum a = (-1.1449174941446927e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.00150161897789716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4573.256724206935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.586348075016903, dt = 0.00150161897789716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.0252896582029223e-16,0)
sum a = (-1.0408340855860843e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001499596957536243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.120e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4824.50017218263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.587849693994801, dt = 0.001499596957536243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.98 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.960237527853792e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014976763623886623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4503.895287267632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.589349290952337, dt = 0.0014976763623886623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.9168694409543718e-16,0)
sum a = (-1.734723475976807e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014958580709008183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4742.21260008108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.590846967314726, dt = 0.0014958580709008183 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.951563910473908e-16,0)
sum a = (-7.632783294297951e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014941428552787506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4789.760182624216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.592342825385627, dt = 0.0014941428552787506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.0209528495129803e-16,0)
sum a = (-4.85722573273506e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014925313845973636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4773.25503999828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.593836968240906, dt = 0.0014925313845973636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.8821749714348357e-16,0)
sum a = (-1.1449174941446927e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014910242281185207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4575.260719279646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.595329499625503, dt = 0.0014910242281185207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,1.8995222061946038e-16,0)
sum a = (-3.469446951953614e-17,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014896218587753828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4684.246315327728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.596820523853622, dt = 0.0014896218587753828 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.9081958235744878e-16,0)
sum a = (7.632783294297951e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001488324656783601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4690.913894623042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.598310145712397, dt = 0.001488324656783601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.75 us (96.4%)
LB move op cnt : 0
LB apply : 2.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.942890293094024e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014871329133432352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4512.277681377242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.599798470369181, dt = 0.0014871329133432352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.968911145233676e-16,0)
sum a = (-8.326672684688674e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014860468343985997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4723.435246526819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.601285603282524, dt = 0.0014860468343985997 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.44 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.97758476261356e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001485066544426368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4535.91250298659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.602771650116923, dt = 0.001485066544426368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.01 us (95.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.97758476261356e-16,0)
sum a = (4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014841920902254559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4503.427589910723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.604256716661349, dt = 0.0014841920902254559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.986258379993444e-16,0)
sum a = (-3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001483423444685147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4646.008983009829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.605740908751574, dt = 0.001483423444685147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.97758476261356e-16,0)
sum a = (-1.0408340855860843e-16,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014827605105107943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4594.649538039089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.607224332196259, dt = 0.0014827605105107943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014822031238891176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4635.711055699402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.60870709270677, dt = 0.0014822031238891176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.9081958235744878e-16,0)
sum a = (-9.71445146547012e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014817510580776127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4713.736838293442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.61018929583066, dt = 0.0014817510580776127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 223.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.8648277366750676e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014814040269049825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4643.665387058375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.611671046888738, dt = 0.0014814040269049825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.84 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.8995222061946038e-16,0)
sum a = (-1.942890293094024e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014811616881715754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4521.706595585626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.613152450915643, dt = 0.0014811616881715754 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0122792321330962e-16,0)
sum a = (-6.245004513516506e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014810236469408925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4728.293844221403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.614633612603814, dt = 0.0014810236469408925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 278.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.93421667571414e-16,0)
sum a = (3.469446951953614e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014809894587149415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4408.719666752563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.616114636250755, dt = 0.0014809894587149415 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8648277366750676e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014810586324879207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4742.78343071764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.61759562570947, dt = 0.0014810586324879207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 246.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.8735013540549517e-16,0)
sum a = (-1.0408340855860843e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014812306336741278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4581.715520515344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.619076684341958, dt = 0.0014812306336741278 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.7694179454963432e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014815048869073406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4600.785729765216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.620557914975632, dt = 0.0014815048869073406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.8561541192951836e-16,0)
sum a = (-1.0408340855860843e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014818807787100575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4618.445311139537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.622039419862539, dt = 0.0014818807787100575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.6653345369377348e-16,0)
sum a = (-6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014823576600320174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4692.40413877817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.62352130064125, dt = 0.0014823576600320174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.682681771697503e-16,0)
sum a = (-1.1796119636642288e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014829348486583142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4701.7056011926425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6250036583012815, dt = 0.0014829348486583142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 263.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.734723475976807e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014836116314881982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4557.232500236827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.62648659314994, dt = 0.0014836116314881982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.7694179454963432e-16,0)
sum a = (-1.942890293094024e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014843872666863256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4604.998739775427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.627970204781428, dt = 0.0014843872666863256 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.26 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.7520707107365752e-16,0)
sum a = (-6.245004513516506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014852609857087663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4566.966807085883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6294545920481145, dt = 0.0014852609857087663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.9081958235744878e-16,0)
sum a = (-3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001486231995206595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4648.785014999008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.630939853033823, dt = 0.001486231995206595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8908485888147197e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014872994788102394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4636.883697994206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.63242608502903, dt = 0.0014872994788102394 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.8561541192951836e-16,0)
sum a = (-2.0816681711721685e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001488462598798097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4638.758848806202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.63391338450784, dt = 0.001488462598798097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.942890293094024e-16,0)
sum a = (-1.3877787807814457e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014897204976531998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4639.689325115569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.635401847106639, dt = 0.0014897204976531998 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.9081958235744878e-16,0)
sum a = (-2.0816681711721685e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014910722995118847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4491.612067275866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.636891567604292, dt = 0.0014910722995118847 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.7867651802561113e-16,0)
sum a = (-1.8735013540549517e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014925171115085455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4713.408255390122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.638382639903804, dt = 0.0014925171115085455 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.8735013540549517e-16,0)
sum a = (-1.6653345369377348e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014940540250207104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4474.814239815616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.639875157015312, dt = 0.0014940540250207104 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.8735013540549517e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014956821168186597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4795.568459091989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.641369211040333, dt = 0.0014956821168186597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.8908485888147197e-16,0)
sum a = (-3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014974004501238864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 2.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4384.575174808068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.642864893157151, dt = 0.0014974004501238864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (60.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.960237527853792e-16,0)
sum a = (-1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014992080755806534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4741.797728294775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6443622936072755, dt = 0.0014992080755806534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.9255430583342559e-16,0)
sum a = (-4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015011040321449092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4691.215033803587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.645861501682856, dt = 0.0015011040321449092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 223.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0643209364124004e-16,0)
sum a = (-4.85722573273506e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015030873478947067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.118e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4832.960260896724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.647362605715001, dt = 0.0015030873478947067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.942890293094024e-16,0)
sum a = (7.632783294297951e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015051570407662812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4799.823350031041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.648865693062896, dt = 0.0015051570407662812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0816681711721685e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015073121192197745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4704.832801157428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.650370850103662, dt = 0.0015073121192197745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0643209364124004e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015095515828385526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4838.292119824123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.651878162222881, dt = 0.0015095515828385526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (-6.245004513516506e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015118744228659194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4460.754628479157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.65338771380572, dt = 0.0015118744228659194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.9949319973733282e-16,0)
sum a = (-1.0408340855860843e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015142796226829405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4628.588467977077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.654899588228585, dt = 0.0015142796226829405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 291.70 us (97.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0122792321330962e-16,0)
sum a = (-1.5265566588595902e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015167661582309402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4627.475392986545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.656413867851268, dt = 0.0015167661582309402 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0469737016526324e-16,0)
sum a = (-1.8041124150158794e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015193329983821445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4862.77643616723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.657930634009499, dt = 0.0015193329983821445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.1163626406917047e-16,0)
sum a = (-1.942890293094024e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015219791052617716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4711.028917827187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.65944996700788, dt = 0.0015219791052617716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.185751579730777e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015247034345247956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4778.150925559148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6609719461131425, dt = 0.0015247034345247956 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.23 us (94.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015275049355904324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 2.2% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4758.477514888751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.662496649547667, dt = 0.0015275049355904324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 471.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.2724877535296173e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015303825518372962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4749.975181805862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.664024154483258, dt = 0.0015303825518372962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.42861286636753e-16,0)
sum a = (6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001533335220762043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4888.329578637152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.665554537035095, dt = 0.001533335220762043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (0.9%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 295.71 us (97.1%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.3765711620882257e-16,0)
sum a = (-1.0408340855860843e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015363618741041868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4431.362766598608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.667087872255856, dt = 0.0015363618741041868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3592239273284576e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015394614379396646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4847.918318261724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.66862423412996, dt = 0.0015394614379396646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.66 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015426328327455996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4861.367620932238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6701636955679, dt = 0.0015426328327455996 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.220446049250313e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015458749734385986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4782.488452042014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.671706328400646, dt = 0.0015458749734385986 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-1.8735013540549517e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015491867693888076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4669.035859057605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.673252203374084, dt = 0.0015491867693888076 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 236.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015525671244118547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4793.378888435023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6748013901434735, dt = 0.0015525671244118547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3765711620882257e-16,0)
sum a = (-6.938893903907228e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015560149367406827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4765.878880695892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.676353957267885, dt = 0.0015560149367406827 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3765711620882257e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015595290989791988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4916.232620338819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.677909972204626, dt = 0.0015595290989791988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.393918396847994e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015631084980395646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4837.544994158137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.679469501303605, dt = 0.0015631084980395646 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.53 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.393918396847994e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015667520150648491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4759.733857201345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.681032609801645, dt = 0.0015667520150648491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 222.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.2898349882893854e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015704585253387005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4974.25456762806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.68259936181671, dt = 0.0015704585253387005 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 261.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015742268981835963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4828.515358616129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.684169820342048, dt = 0.0015742268981835963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015780559968491537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4972.246008809626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.685744047240232, dt = 0.0015780559968491537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 356.57 us (97.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3245294578089215e-16,0)
sum a = (-1.457167719820518e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001581944678391911 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.264e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4494.49172831549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.687322103237081, dt = 0.001581944678391911 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-1.8041124150158794e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.001585891793547937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5003.435934250626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.688904047915473, dt = 0.001585891793547937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 252.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015898961865994977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4852.422983074152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.690489939709021, dt = 0.0015898961865994977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-1.942890293094024e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015939566952370386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4956.387413000534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.692079835895621, dt = 0.0015939566952370386 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015980721504175982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4998.313731323181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.693673792590858, dt = 0.0015980721504175982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1163626406917047e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016022413762207498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4912.656505725413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.695271864741276, dt = 0.0016022413762207498 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.185751579730777e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016064631897031202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5001.160930366689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.696874106117496, dt = 0.0016064631897031202 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.1510571102112408e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016107364007524477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5026.563575684162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6984805693072, dt = 0.0016107364007524477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.00161505981194214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5133.130417782478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.700091305707952, dt = 0.00161505981194214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1163626406917047e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016194322183872103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4971.726446306405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.701706365519894, dt = 0.0016194322183872103 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3245294578089215e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016238524076024354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5145.0563720583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.703325797738281, dt = 0.0016238524076024354 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001628319159363552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5042.076032496304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.704949650145884, dt = 0.001628319159363552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (9.71445146547012e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001632831245572254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4979.865413088433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.706577969305247, dt = 0.001632831245572254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.255140518769849e-16,0)
sum a = (-8.326672684688674e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001637387430125722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4974.739917180753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.70821080055082, dt = 0.001637387430125722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.255140518769849e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016419864687913731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5101.071989730173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7098481879809455, dt = 0.0016419864687913731 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3592239273284576e-16,0)
sum a = (9.71445146547012e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016466271090875163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5204.609882297422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.711490174449737, dt = 0.0016466271090875163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.46 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.5326962749261384e-16,0)
sum a = (-4.163336342344337e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016513080901705119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4996.394715153194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.713136801558824, dt = 0.0016513080901705119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.42861286636753e-16,0)
sum a = (-1.942890293094024e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016560281427290655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5282.763064360303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.714788109648994, dt = 0.0016560281427290655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.42861286636753e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016607859888862107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.788237387288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.716444137791723, dt = 0.0016607859888862107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.255140518769849e-16,0)
sum a = (-1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016655803421095332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4968.987250133066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.71810492378061, dt = 0.0016655803421095332 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (0.9%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 272.62 us (97.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.393918396847994e-16,0)
sum a = (-4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016704099071301634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5078.952334787697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.719770504122719, dt = 0.0016704099071301634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.463307335887066e-16,0)
sum a = (-9.71445146547012e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016752733798710135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5151.3816446698065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7214409140298494, dt = 0.0016752733798710135 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.393918396847994e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016801694473847408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5299.182905794188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.723116187409721, dt = 0.0016801694473847408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016850967878019006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5280.31840267714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.724796356857105, dt = 0.0016850967878019006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016900540702896821 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5341.538986404637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.726481453644907, dt = 0.0016900540702896821 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.185751579730777e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016950399550216607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5070.534050032715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.728171507715197, dt = 0.0016950399550216607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 244.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (-9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017000530931589322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5266.843522744752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.729866547670218, dt = 0.0017000530931589322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 255.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.185751579730777e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017050921268430112 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5437.637167552318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.731566600763377, dt = 0.0017050921268430112 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.1510571102112408e-16,0)
sum a = (-1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017101556892008206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.116e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5500.563339655181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.73327169289022, dt = 0.0017101556892008206 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017152424043621064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5327.772232617046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.734981848579421, dt = 0.0017152424043621064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017203508874895888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5378.874529570554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7366970909837836, dt = 0.0017203508874895888 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 245.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.001725479744822129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5449.249864687422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.738417441871273, dt = 0.001725479744822129 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.77 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017306275737311912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5350.232624209457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.740142921616095, dt = 0.0017306275737311912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.46 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.255140518769849e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017357929627908521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 2.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5168.825452321675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.741873549189826, dt = 0.0017357929627908521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001740974491861585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5350.124673087766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.743609342152617, dt = 0.001740974491861585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3245294578089215e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017461707321880491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5380.449588409412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.745350316644478, dt = 0.0017461707321880491 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-1.249000902703301e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017513802465110747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5460.570861106771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.747096487376666, dt = 0.0017513802465110747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017566015891940462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5272.616867807499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.748847867623177, dt = 0.0017566015891940462 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001761833306363812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5565.597735216441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.750604469212371, dt = 0.001761833306363812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017670739360663254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5551.917955376783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.752366302518735, dt = 0.0017670739360663254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.47 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.463307335887066e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017723220084370991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5433.630323122943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.754133376454801, dt = 0.0017723220084370991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.463307335887066e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017775760458866182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5589.437110873609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.755905698463238, dt = 0.0017775760458866182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017828345633008002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5499.5761109045125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.757683274509124, dt = 0.0017828345633008002 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.65 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017880960682565867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5488.712859908769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.759466109072425, dt = 0.0017880960682565867 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.001793359061252719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5582.348700898611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.761254205140681, dt = 0.001793359061252719 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1510571102112408e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017986220359557678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5548.88346696226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.763047564201934, dt = 0.0017986220359557678 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.185751579730777e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001803883479461419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5579.626455490158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.76484618623789, dt = 0.001803883479461419 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.61 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1163626406917047e-16,0)
sum a = (-6.938893903907228e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018091418725710393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5592.521918084989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.766650069717352, dt = 0.0018091418725710393 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.185751579730777e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.001814395690083514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5419.134342169597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.768459211589923, dt = 0.001814395690083514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018196434011023377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5798.7160135691565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.770273607280007, dt = 0.0018196434011023377 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018248834693578894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5768.339106003802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.77209325068111, dt = 0.0018248834693578894 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 239.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1163626406917047e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018301143535448701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5639.37659851633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.773918134150468, dt = 0.0018301143535448701 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1163626406917047e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.001835334507674781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5746.177236653516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.775748248504013, dt = 0.001835334507674781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 480.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.185751579730777e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018405423814433777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5686.693469093566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.777583583011688, dt = 0.0018405423814433777 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018457364206129554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5713.61410080743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.779424125393131, dt = 0.0018457364206129554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3245294578089215e-16,0)
sum a = (4.163336342344337e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018509150674093516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5601.694097052772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.781269861813744, dt = 0.0018509150674093516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018560767609334945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5762.689588416723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7831207768811534, dt = 0.0018560767609334945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.255140518769849e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018612199375873297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5806.838099333861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.784976853642087, dt = 0.0018612199375873297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.001866343031513928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5559.420738342814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.786838073579674, dt = 0.001866343031513928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.185751579730777e-16,0)
sum a = (-8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018714444750515746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5758.831880190503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.788704416611188, dt = 0.0018714444750515746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1510571102112408e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018765226992015745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5731.411840527091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.79057586108624, dt = 0.0018765226992015745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1163626406917047e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018815761341095744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5854.650121526822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.792452383785442, dt = 0.0018815761341095744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (1.3877787807814457e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001886603209560073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5687.307376890375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.794333959919551, dt = 0.001886603209560073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 234.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018916023554838748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5597.781544350858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.796220563129111, dt = 0.0018916023554838748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018965720024781575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5719.250408165074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7981121654845955, dt = 0.0018965720024781575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1163626406917047e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019015105823388275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5670.012713255908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.800008737487073, dt = 0.0019015105823388275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 263.59 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1510571102112408e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019064165286048155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5816.8008507703935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8019102480694125, dt = 0.0019064165286048155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.185751579730777e-16,0)
sum a = (1.3877787807814457e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019112882771139521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5866.112603264338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.803816664598017, dt = 0.0019112882771139521 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019161242665700308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5823.508031642269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.805727952875131, dt = 0.0019161242665700308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.0%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 298.84 us (97.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.220446049250313e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019209229391206602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5594.550630134543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.807644077141701, dt = 0.0019209229391206602 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.04 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019256827409454824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5972.786938071935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.809565000080822, dt = 0.0019256827409454824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.255140518769849e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019304021228543043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.233e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5622.69129019244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.811490682821767, dt = 0.0019304021228543043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.79 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.185751579730777e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019350795408947224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6033.28174303252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.813421084944621, dt = 0.0019350795408947224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019397134569687088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5847.9432281074205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.815356164485515, dt = 0.0019397134569687088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1510571102112408e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019443023394577204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5950.228871468639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.817295877942484, dt = 0.0019443023394577204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.185751579730777e-16,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019488446638557782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6021.205156633998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.819240180281941, dt = 0.0019488446638557782 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.255140518769849e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001953338913410028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5895.2979309528655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.821189024945797, dt = 0.001953338913410028 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.255140518769849e-16,0)
sum a = (-4.163336342344337e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019577835797682085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.562086950004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.823142363859207, dt = 0.0019577835797682085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.2898349882893854e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019621771636324898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6099.43651963233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.825100147438975, dt = 0.0019621771636324898 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.2898349882893854e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019665181754191007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5993.246234474143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.827062324602608, dt = 0.0019665181754191007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-17,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001970805135923166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5997.127795489922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.829028842778027, dt = 0.001970805135923166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 262.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.00197503657698814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5856.858226773363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.83099964791395, dt = 0.00197503657698814 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001979211042179238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5854.277847573651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.832974684490939, dt = 0.001979211042179238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.001983327087460219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6035.473176286294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8349538955331175, dt = 0.001983327087460219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (61.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001987383281872909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6140.051678807887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.836937222620578, dt = 0.001987383281872909 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001991378208218791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5999.607394451418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.83892460590245, dt = 0.001991378208218791 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019953104637420046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6215.201576469018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.840915984110669, dt = 0.0019953104637420046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.01 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.2898349882893854e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019991786608131016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5986.520065699141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.842911294574411, dt = 0.0019991786608131016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.220446049250313e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002002981427612864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6053.520962137472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.844910473235224, dt = 0.002002981427612864 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020067174088154965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5875.2193934280085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.846913454662837, dt = 0.0020067174088154965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002010385266270513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6282.722924258565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.848920172071653, dt = 0.002010385266270513 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.25 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002013983679682609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6005.821242868704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.850930557337923, dt = 0.002013983679682609 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002017511347288801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6233.8282733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.852944541017606, dt = 0.002017511347288801 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.3592239273284576e-16,0)
sum a = (-4.163336342344337e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002020966986532156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6243.936718697475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.854962052364894, dt = 0.002020966986532156 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020243493347313645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5999.82282232443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.856983019351427, dt = 0.0020243493347313645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020276571497454578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6235.402291355255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.859007368686158, dt = 0.0020276571497454578 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020308892106329504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6253.365229463881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.861035025835903, dt = 0.0020308892106329504 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020340443183046917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6092.144722810142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.863065915046536, dt = 0.0020340443183046917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 251.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1510571102112408e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020371212961696975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6153.0287577889185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.865099959364841, dt = 0.0020371212961696975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020401189907732664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6284.981258284829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.867137080661011, dt = 0.0020401189907732664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.220446049250313e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020430362724266466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6318.641198668343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.869177199651784, dt = 0.0020430362724266466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020458720358275603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6288.168027536474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.87122023592421, dt = 0.0020458720358275603 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 247.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002048625200670874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6236.796768087187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8732661079600375, dt = 0.002048625200670874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.220446049250313e-16,0)
sum a = (-1.3877787807814457e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020512947122487174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6428.381542883893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8753147331607085, dt = 0.0020512947122487174 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.00205387954203936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6167.977966399374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.877366027872958, dt = 0.00205387954203936 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002056378688284157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6326.8484564367845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.879419907414997, dt = 0.002056378688284157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 263.06 us (96.8%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.3592239273284576e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020587911765519045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6220.381642282138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.881476286103281, dt = 0.0020587911765519045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020611160602899197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6584.181256212367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8835350772798325, dt = 0.0020611160602899197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.002063352421361218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6538.947017950963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.885596193340122, dt = 0.002063352421361218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002065499370567114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6501.904876734008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.887659545761483, dt = 0.002065499370567114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002067556048154658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6569.967939205477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.88972504513205, dt = 0.002067556048154658 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002069521624308263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6449.6522007827825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.891792601180205, dt = 0.002069521624308263 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020713952996249435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6637.283614814707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.893862122804513, dt = 0.0020713952996249435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.43 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020731763055725737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6359.272705654334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.895933518104138, dt = 0.0020731763055725737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002074863904930622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6489.266076636581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.89800669440971, dt = 0.002074863904930622 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 279.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020764573922127856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6407.037445243031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.900081558314641, dt = 0.0020764573922127856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020779560940710332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6516.454583305897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.902158015706854, dt = 0.0020779560940710332 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020793593696805225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6359.42452032607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.904235971800925, dt = 0.0020793593696805225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002080666611104932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6508.563145774722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.906315331170606, dt = 0.002080666611104932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020818772436417177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6645.627561271594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.908395997781711, dt = 0.0020818772436417177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002082990726146891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6471.123419065333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.910477875025353, dt = 0.002082990726146891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002084006551338858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6658.674895888975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9125608657515, dt = 0.002084006551338858 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.83 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.3592239273284576e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002084924246080982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6563.874816441385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.914644872302839, dt = 0.002084924246080982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020857433716424353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6433.677217467679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.91672979654892, dt = 0.0020857433716424353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-17,2.42861286636753e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002086463523937074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6507.570946253905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.918815539920563, dt = 0.002086463523937074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.95 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.00208708433373995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6333.1933853957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9209020034445, dt = 0.00208708433373995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 233.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.42861286636753e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020876054668812274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6526.829701785502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.92298908777824, dt = 0.0020876054668812274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.498001805406602e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020880266244172043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6361.267619162927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9250766932451215, dt = 0.0020880266244172043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020883475427782346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6535.29459911488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9271647198695385, dt = 0.0020883475427782346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.04 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020885679938933096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6235.874326174025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.929253067412317, dt = 0.0020885679938933096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 227.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020886877852911733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.120e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6710.468223474997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.93134163540621, dt = 0.0020886877852911733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 259.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020887067601777763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6315.720709955545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9334303231915015, dt = 0.0020887067601777763 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.17 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.498001805406602e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020886247974899546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.342e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5603.309472460533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.93551902995168, dt = 0.0020886247974899546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 832.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 261.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020884418119252886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6342.753854818476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.937607654749169, dt = 0.0020884418119252886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.42861286636753e-16,0)
sum a = (1.3877787807814457e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020881577539480257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6479.868481301353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.939696096561095, dt = 0.0020881577539480257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.42861286636753e-16,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.002087772609771064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6614.117563298585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.941784254315043, dt = 0.002087772609771064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.23 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.42861286636753e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020872864013139923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6546.531701611055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.943872026924814, dt = 0.0020872864013139923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020866991861372254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.425e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5274.029149261085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.945959313326128, dt = 0.0020866991861372254 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.5673907444456745e-16,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020860110573522597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6588.645875533378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.948046012512265, dt = 0.0020860110573522597 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.42861286636753e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020852221435081753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6479.038577121197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.950132023569617, dt = 0.0020852221435081753 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020843326084544834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6348.2450034921185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9522172457131255, dt = 0.0020843326084544834 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.42861286636753e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020833426511804596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6554.682552057349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.95430157832158, dt = 0.0020833426511804596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.66 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.5673907444456745e-16,0)
sum a = (0,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002082252505631148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6410.520680887976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.95638492097276, dt = 0.002082252505631148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 232.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-18,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002081062440500234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6586.529109796558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.958467173478391, dt = 0.002081062440500234 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.498001805406602e-16,0)
sum a = (1.3877787807814457e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.002079772759000009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6562.605749860802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.960548235918892, dt = 0.002079772759000009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-17,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020783837986087243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6522.128645273494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.962628008677892, dt = 0.0020783837986087243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020768959307955505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6446.883155872929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.964706392476501, dt = 0.0020768959307955505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.4%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-17,2.498001805406602e-16,0)
sum a = (0,-1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020753095607235227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6625.337035111457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.966783288407297, dt = 0.0020753095607235227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.10 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.949029909160572e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002073625126930776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6455.904126932211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.96885859796802, dt = 0.002073625126930776 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.122502256758253e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020718431009904403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6421.924428225301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.970932223094951, dt = 0.0020718431009904403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.53 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5612511283791264e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020699639871495745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6366.25571217004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.973004066195942, dt = 0.0020699639871495745 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9081958235744878e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002067988321947593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6496.699592805789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.975074030183091, dt = 0.002067988321947593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020659166738145537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6304.805068915864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.977142018505038, dt = 0.0020659166738145537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.42861286636753e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020637496426498384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6557.1357006360195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.979207935178852, dt = 0.0020637496426498384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-17,2.498001805406602e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020614878593816464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6552.857444600732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.981271684821502, dt = 0.0020614878593816464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (0.9%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.08 us (96.9%)
LB move op cnt : 0
LB apply : 1.81 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (0,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020591319855078403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6151.940320318191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.983333172680884, dt = 0.0020591319855078403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-17,2.5673907444456745e-16,0)
sum a = (0,-1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020566827126186644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6458.806140045294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.985392304666392, dt = 0.0020566827126186644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 255.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.122502256758253e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020541407619018397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6161.032493640299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.98744898737901, dt = 0.0020541407619018397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020515068836306494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6458.377431504198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.989503128140912, dt = 0.0020515068836306494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.122502256758253e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002048781856635537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6464.063085163477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.991554635024543, dt = 0.002048781856635537 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 223.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.002045966487759863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.120e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6585.405532429579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.993603416881179, dt = 0.002045966487759863 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020430616113003685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6447.232296155552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.995649383368939, dt = 0.0020430616113003685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.122502256758253e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020400680884330295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6425.3394374733125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.997692444980239, dt = 0.0020400680884330295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.00203698680662488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6080.543917596564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.999732513068672, dt = 0.00203698680662488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.636779683484747e-16,0)
sum a = (0,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.00203381867903249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.38954535618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.001769499875297, dt = 0.00203381867903249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.5673907444456745e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020305646438877486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6244.555223847966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.003803318554329, dt = 0.0020305646438877486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 277.57 us (96.9%)
LB move op cnt : 0
LB apply : 1.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (71.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.5673907444456745e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002027225663871587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6188.507981950883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.005833883198217, dt = 0.002027225663871587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.498001805406602e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020238027254763885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6502.218831578486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.007861108862088, dt = 0.0020238027254763885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6020852139652106e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002020296838357674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6435.860213909151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.009884911587565, dt = 0.002020296838357674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 245.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.002016709034675848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6328.545812642377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.011905208425922, dt = 0.002016709034675848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (9.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.949029909160572e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002013040368428634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6301.980503186991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.013921917460598, dt = 0.002013040368428634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002009291914774941 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6360.875385186591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.015934957829026, dt = 0.002009291914774941 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2959746043559335e-17,2.706168622523819e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020054647693508233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6440.330617923166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.017944249743802, dt = 0.0020054647693508233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.642919299551295e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.002001560047578291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6356.896153078667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.019949714513152, dt = 0.002001560047578291 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 239.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9898639947466563e-17,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.001997578883967634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6151.553611504211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.02195127456073, dt = 0.001997578883967634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.117434254131581e-17,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019935224314139954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6180.54805595318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.023948853444698, dt = 0.0019935224314139954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9439619065339e-17,2.7755575615628914e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001989391860488875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6231.147706641485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.025942375876112, dt = 0.001989391860488875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.2909066017292616e-17,2.7755575615628914e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001985188358727285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6206.790468710822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.027931767736601, dt = 0.001985188358727285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.117434254131581e-17,2.706168622523819e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019809131299112688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6152.755771357382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.029916956095328, dt = 0.0019809131299112688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.4643789493269423e-17,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019765673933504436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6233.975122520141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.031897869225239, dt = 0.0019765673933504436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9439619065339e-17,2.7755575615628914e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001972152383160293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6049.595071714254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.033874436618589, dt = 0.001972152383160293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7704895589362195e-17,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.001967669347538879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6203.254271989179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.03584658900175, dt = 0.001967669347538879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.25 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-17,2.706168622523819e-16,0)
sum a = (0,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019631195480426557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5757.019620084007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.037814258349289, dt = 0.0019631195480426557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2500725161431774e-17,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019585042588620596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6107.746199271415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.039777377897331, dt = 0.0019585042588620596 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.001953824766097531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6067.43588605525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0417358821561935, dt = 0.001953824766097531 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0306980803327406e-17,2.5673907444456745e-16,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019490823670366253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.119e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6284.40422888983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.043689706922291, dt = 0.0019490823670366253 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.423544863740858e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-8.673617379884035e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.001944278369432856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5938.411616780146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0456387892893275, dt = 0.001944278369432856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.498001805406602e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019394140907869016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6029.294650058516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.047583067658761, dt = 0.0019394140907869016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019344908576307946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6184.191823517343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.049522481749547, dt = 0.0019344908576307946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 282.49 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,2.42861286636753e-16,0)
sum a = (8.326672684688674e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019295100048156918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5801.91089187732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.051456972607178, dt = 0.0019295100048156918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 223.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9439619065339e-17,2.42861286636753e-16,0)
sum a = (0,-3.8163916471489756e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019244728748038435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6140.237713830527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.053386482611994, dt = 0.0019244728748038435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7704895589362195e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019193808169653123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5764.98733044076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.055310955486798, dt = 0.0019193808169653123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.78 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.597017211338539e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019142351868800247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 2.5% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5796.943324883826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.057230336303763, dt = 0.0019142351868800247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 260.05 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,2.42861286636753e-16,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019090373456457032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5914.634116688686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.059144571490643, dt = 0.0019090373456457032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.903127820947816e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019037886591922115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6011.364412660084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.061053608836289, dt = 0.0019037886591922115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 491.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5536491244391186e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018984904976028349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5930.184856978423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.062957397495482, dt = 0.0018984904976028349 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2934406030425976e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018931442344429865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5865.135191047531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.064855887993085, dt = 0.0018931442344429865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.401860820291148e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,-2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018877512460968467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5845.799279318978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.066749032227528, dt = 0.0018877512460968467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7488055154865094e-17,2.3592239273284576e-16,0)
sum a = (8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018823129111123788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5817.499900228515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.068636783473624, dt = 0.0018823129111123788 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.640385298237959e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018768306095551949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5852.690052119394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.070519096384737, dt = 0.0018768306095551949 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.68 us (97.0%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.445228907190568e-17,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018713057223716766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5593.541823635617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.072395926994292, dt = 0.0018713057223716766 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 222.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.651227319962814e-17,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018657396307618038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.121e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6009.572389295256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.074267232716664, dt = 0.0018657396307618038 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.312590645178972e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018601337155620403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5944.3069766521285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.076132972347425, dt = 0.0018601337155620403 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.421010862427522e-17,2.3592239273284576e-16,0)
sum a = (8.326672684688674e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018544893566386905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5689.642278432015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.077993106062987, dt = 0.0018544893566386905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 227.54 us (88.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.502326025363935e-17,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,-4.5102810375396984e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018488079322920743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5880.723290217839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.079847595419626, dt = 0.0018488079322920743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.843849709696869e-17,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018430908186718466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 2.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5597.774044107502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.081696403351918, dt = 0.0018430908186718466 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.659535340374333e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-2.949029909160572e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018373393892038015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5752.63779381991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.08353949417059, dt = 0.0018373393892038015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (0.8%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.34 us (69.3%)
LB move op cnt : 0
LB apply : 1.76 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.605325231750058e-17,2.5673907444456745e-16,0)
sum a = (1.1102230246251565e-16,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018315550140284552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.316e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5025.854679797858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.085376833559794, dt = 0.0018315550140284552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.681219383824043e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,2.42861286636753e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018257390594516756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5728.174057541025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.087208388573822, dt = 0.0018257390594516756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.049848122469115e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-1.5612511283791264e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018198928874076522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5575.0452855023805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0890341276332745, dt = 0.0018198928874076522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.223320470066795e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,4.683753385137379e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018140178549344208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5567.696616326878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.090854020520682, dt = 0.0018140178549344208 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.876375774871434e-17,2.498001805406602e-16,0)
sum a = (0,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018081153136621855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5720.979941869089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.092668038375617, dt = 0.0018081153136621855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.854691731421724e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001802186609314638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5735.542117422613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.094476153689279, dt = 0.001802186609314638 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.2898349882893854e-16,0)
sum a = (0,7.806255641895632e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017962330812234684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5589.672852532156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.096278340298594, dt = 0.0017962330812234684 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.811323644522304e-17,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-3.5561831257524545e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017902560618562303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.116e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5794.684497363163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.098074573379817, dt = 0.0017902560618562303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.811323644522304e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017842568763577111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5645.892528481599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.099864829441673, dt = 0.0017842568763577111 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,1.5612511283791264e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017782368421049555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5514.634337949172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.10164908631803, dt = 0.0017782368421049555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.37 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.3592239273284576e-16,0)
sum a = (0,-2.3418766925686896e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017721972682760323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5568.940148981007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.103427323160135, dt = 0.0017721972682760323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017661394554326665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5508.589086963297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.105199520428411, dt = 0.0017661394554326665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.114900252818245e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,9.974659986866641e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017600646951168068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5541.72793111354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.106965659883844, dt = 0.0017600646951168068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 238.75 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.2898349882893854e-16,0)
sum a = (8.326672684688674e-17,-3.165870343657673e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017539742694611924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5440.292836370064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.108725724578961, dt = 0.0017539742694611924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017478694508139647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5424.914360339992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1104796988484225, dt = 0.0017478694508139647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.42861286636753e-16,0)
sum a = (0,2.927345865710862e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017417515013773734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5399.204425305146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.112227568299237, dt = 0.0017417515013773734 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-6.298791105667154e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017356216728605528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5449.3594098627245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.113969319800614, dt = 0.0017356216728605528 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 275.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.498001805406602e-16,0)
sum a = (0,-7.806255641895632e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017294812061464226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5306.449385380634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.115704941473475, dt = 0.0017294812061464226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,1.6696713456276768e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017233313309726439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5249.836076490426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.117434422679621, dt = 0.0017233313309726439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.35 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,8.673617379884035e-19,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017171732656266494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5314.449590195427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.119157754010594, dt = 0.0017171732656266494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,1.431146867680866e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017110082166546588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5449.085261184463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.120874927276221, dt = 0.0017110082166546588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017048373785846667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5454.079010943145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.122585935492875, dt = 0.0017048373785846667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (0.2%)
patch tree reduce : 441.00 ns (0.0%)
gen split merge : 391.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.0%)
LB compute : 1.28 ms (99.3%)
LB move op cnt : 0
LB apply : 1.76 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.1510571102112408e-16,0)
sum a = (-5.551115123125783e-17,-1.6479873021779667e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016986619336632949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 2.220e-03 | 0.3% | 0.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2764.37577067131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1242907728714595, dt = 0.0016986619336632949 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (0,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016924830516064481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5449.77618816526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.125989434805123, dt = 0.0016924830516064481 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.05 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.158268339717665e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-1.8214596497756474e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001686301889363672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5190.900613477404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.127681917856729, dt = 0.001686301889363672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-1.8214596497756474e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016801195908961036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.806197379817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.129368219746093, dt = 0.0016801195908961036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.984795992119984e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,1.6479873021779667e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016739372869678931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5073.7269838185575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.131048339336989, dt = 0.0016739372869678931 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.97 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.984795992119984e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,1.1275702593849246e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016677560949509807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5241.341063566962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.132722276623957, dt = 0.0016677560949509807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.45 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.984795992119984e-17,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001661577118643068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5245.391170105714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.134390032718908, dt = 0.001661577118643068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016554014480986534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5126.6498401285635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.136051609837551, dt = 0.0016554014480986534 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.42861286636753e-16,0)
sum a = (0,-1.5612511283791264e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016492301594729594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5192.529392064755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1377070112856495, dt = 0.0016492301594729594 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016430643148785886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5142.470104406792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.139356241445123, dt = 0.0016430643148785886 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.2898349882893854e-16,0)
sum a = (0,-2.2551405187698492e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016369049622547275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5234.527283169087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.140999305760001, dt = 0.0016369049622547275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016307531352487293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5102.973672347952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.142636210722256, dt = 0.0016307531352487293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.2898349882893854e-16,0)
sum a = (-8.326672684688674e-17,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.001624609853109855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5101.280107066481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.144266963857505, dt = 0.001624609853109855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016184761205949943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5063.241192991724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.145891573710615, dt = 0.0016184761205949943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.071532165918825e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016123529278861716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5019.870968253349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.14751004983121, dt = 0.0016123529278861716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.724587470723463e-17,2.2898349882893854e-16,0)
sum a = (1.1102230246251565e-16,-1.214306433183765e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016062412505195845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4960.212595380828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.149122402759096, dt = 0.0016062412505195845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.220446049250313e-16,0)
sum a = (-5.551115123125783e-17,5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016001420493260115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5087.894574088775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.150728644009615, dt = 0.0016001420493260115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-5.204170427930421e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015940562703823072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.338e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4305.543401461245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.152328786058941, dt = 0.0015940562703823072 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.34 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.724587470723463e-17,2.3592239273284576e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015879848449738266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4939.614920388538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.153922842329323, dt = 0.0015879848449738266 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.724587470723463e-17,2.1510571102112408e-16,0)
sum a = (0,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001581928689567477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5013.673055640284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1555108271742975, dt = 0.001581928689567477 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.724587470723463e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.001575888705795219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4937.757864893031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.157092755863865, dt = 0.001575888705795219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.220446049250313e-16,0)
sum a = (-8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015698657804477454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4879.067652533481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.15866864456966, dt = 0.0015698657804477454 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.24 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.1510571102112408e-16,0)
sum a = (8.326672684688674e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015638607854781105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4860.712853360159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1602385103501085, dt = 0.0015638607854781105 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015578745780150682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4800.178392261937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.161802371135587, dt = 0.0015578745780150682 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 255.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015519080003858561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4762.439257498164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.163360245713602, dt = 0.0015519080003858561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.3592239273284576e-16,0)
sum a = (0,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015459618801482078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4846.452084222057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.164912153713988, dt = 0.0015459618801482078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.69 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015400370301313139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4566.428642897679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1664581155941365, dt = 0.0015400370301313139 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 224.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.498001805406602e-16,0)
sum a = (1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015341342484855075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4922.4478365125415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.167998152624268, dt = 0.0015341342484855075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.001528254318740401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4837.530936631496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.169532286872753, dt = 0.001528254318740401 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0306980803327406e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015223980098712487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4851.4769441217495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.171060541191494, dt = 0.0015223980098712487 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 231.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001516566076373264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4637.730038727763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.172582939201365, dt = 0.001516566076373264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.2898349882893854e-16,0)
sum a = (8.326672684688674e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015107592583436511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4796.948968801729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.174099505277738, dt = 0.0015107592583436511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015049782815711008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4765.747787693572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.175610264536082, dt = 0.0015049782815711008 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.377642775528102e-17,2.2898349882893854e-16,0)
sum a = (-5.551115123125783e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014992238576325054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4586.064708339651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.177115242817653, dt = 0.0014992238576325054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0306980803327406e-17,2.220446049250313e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014934966839966336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4647.111046371198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.178614466675286, dt = 0.0014934966839966336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 280.30 us (97.0%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0306980803327406e-17,2.3592239273284576e-16,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014877974441345387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4600.3522293249625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.180107963359283, dt = 0.0014877974441345387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0306980803327406e-17,2.2898349882893854e-16,0)
sum a = (8.326672684688674e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014821268076364409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4695.745653585797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.181595760803417, dt = 0.0014821268076364409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014764854303348511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4554.943710461753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.183077887611054, dt = 0.0014764854303348511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.683753385137379e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014708739544336935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4552.947401011317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.184554373041389, dt = 0.0014708739544336935 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.683753385137379e-17,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014652930086431885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4602.593927665473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.186025246995823, dt = 0.0014652930086431885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014597432083202741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4617.899959481503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.187490540004466, dt = 0.0014597432083202741 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5102810375396984e-17,2.498001805406602e-16,0)
sum a = (0,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014542251556143128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.115e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4712.882036108845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.188950283212787, dt = 0.0014542251556143128 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.5673907444456745e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014487394396178865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4478.3512804160855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.190404508368401, dt = 0.0014487394396178865 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.86 us (95.3%)
LB move op cnt : 0
LB apply : 4.55 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014432866365224166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4432.052400340249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.191853247808019, dt = 0.0014432866365224166 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.636779683484747e-16,0)
sum a = (1.6653345369377348e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001437867309778435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4484.477209626489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.193296534444541, dt = 0.001437867309778435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001432482010260242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4575.612966849525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.19473440175432, dt = 0.001432482010260242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.706168622523819e-16,0)
sum a = (0,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014271312764347784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4109.25908653049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1961668837645805, dt = 0.0014271312764347784 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014218156345344654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4516.214396869569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.197594015041015, dt = 0.0014218156345344654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014165355987338427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4498.756146314734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.19901583067555, dt = 0.0014165355987338427 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014112916713297774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4265.4065730491975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.200432366274284, dt = 0.0014112916713297774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014060843429250555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4493.513997351288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.201843657945614, dt = 0.0014060843429250555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014009140926151689 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4316.040110887508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.203249742288539, dt = 0.0014009140926151689 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 244.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013957813881780982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4351.956354727945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.204650656381154, dt = 0.0013957813881780982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.5673907444456745e-16,0)
sum a = (-8.326672684688674e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001390686686266922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4232.815181622878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.206046437769332, dt = 0.001390686686266922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.636779683484747e-16,0)
sum a = (1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013856304326050621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4434.901912126106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.207437124455598, dt = 0.0013856304326050621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.001380613062183993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4276.6004727139025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.208822754888203, dt = 0.001380613062183993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013756349994632482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4277.168807625241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.210203367950387, dt = 0.0013756349994632482 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001370696658572567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4328.134393456166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2115790029498505, dt = 0.001370696658572567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 238.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013657984435159985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4327.980461066868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.212949699608423, dt = 0.0013657984435159985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 247.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001360940748377831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4247.091136125982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.214315498051938, dt = 0.001360940748377831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-16,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.001356123957530192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4258.521755217508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.215676438800316, dt = 0.001356123957530192 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 224.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.498001805406602e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013513484458421523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4181.294704921488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.217032562757846, dt = 0.0013513484458421523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 272.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013466145788902293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4022.199572411886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.218383911203689, dt = 0.0013466145788902293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 245.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.5673907444456745e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013419227131701264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4217.876801567518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.219730525782579, dt = 0.0013419227131701264 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 257.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013372731963095829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4107.0221502343065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2210724484957485, dt = 0.0013372731963095829 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 242.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.498001805406602e-16,0)
sum a = (1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013326663672822172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4242.01239134509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.222409721692058, dt = 0.0013326663672822172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 243.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013281025566222336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4083.250568295038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.22374238805934, dt = 0.0013281025566222336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.5673907444456745e-16,0)
sum a = (1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001323582086639885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4189.697095742749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.225070490615962, dt = 0.001323582086639885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.498001805406602e-16,0)
sum a = (8.326672684688674e-17,1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013191052716375606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4229.725289876652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.226394072702601, dt = 0.0013191052716375606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.204170427930421e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013146724181264276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4087.182637224974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2277131779742385, dt = 0.0013146724181264276 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (8.326672684688674e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013102838250434793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4142.4183828246705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.229027850392365, dt = 0.0013102838250434793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013059397839689324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4121.145362231477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2303381342174085, dt = 0.0013059397839689324 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013016405793438571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3900.0028389375834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.231644074001378, dt = 0.0013016405793438571 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 276.59 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012973864886879644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4010.590778569943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.232945714580722, dt = 0.0012973864886879644 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012931777828174527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4050.7988770878455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.23424310106941, dt = 0.0012931777828174527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012890147260628526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4056.1234427376808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.235536278852227, dt = 0.0012890147260628526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012848975764867853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4058.511208641571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.23682529357829, dt = 0.0012848975764867853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 250.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.498001805406602e-16,0)
sum a = (-8.326672684688674e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001280826586101561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4020.9244476676836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.238110191154777, dt = 0.001280826586101561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.498001805406602e-16,0)
sum a = (1.1102230246251565e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012768020010865606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3945.577703702427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2393910177408785, dt = 0.0012768020010865606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012728240620053359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3971.0369682943524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.240667819741965, dt = 0.0012728240620053359 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012688930040223657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3837.9112062757945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.241940643803971, dt = 0.0012688930040223657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012650090571194226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3900.0561053699157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.243209536807993, dt = 0.0012650090571194226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012611724463114985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3885.126492320592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2444745458651125, dt = 0.0012611724463114985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012573833918622399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3817.322914444328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.245735718311424, dt = 0.0012573833918622399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.07 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012536421094988608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3845.0458362319496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2469931017032865, dt = 0.0012536421094988608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012499488106264866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3826.2110546159674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2482467438127856, dt = 0.0012499488106264866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012463037025419023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3858.561399304874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.249496692623412, dt = 0.0012463037025419023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.498001805406602e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012427069886466716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 2.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3848.2693004718662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.250742996325954, dt = 0.0012427069886466716 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.3592239273284576e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012391588686596084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3826.2155675531585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.251985703314601, dt = 0.0012391588686596084 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012356595388285665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3739.6025879575745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.25322486218326, dt = 0.0012356595388285665 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.97 us (95.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012322091921415392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 2.3% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3836.3697781792393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2544605217220886, dt = 0.0012322091921415392 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.87 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012288080185370517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3699.6458708475843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.25569273091423, dt = 0.0012288080185370517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001225456205113831 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3854.9999927961353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.256921538932767, dt = 0.001225456205113831 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 20.54 us (7.6%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 241.01 us (89.3%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012221539363397463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3690.1636772215056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2581469951378805, dt = 0.0012221539363397463 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012189013942600247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3785.1157241830674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.25936914907422, dt = 0.0012189013942600247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 261.92 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.636779683484747e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012156987587047209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.246e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3520.465116492736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.26058805046848, dt = 0.0012156987587047209 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012125462074954595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3792.944473480678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.261803749227185, dt = 0.0012125462074954595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.5673907444456745e-16,0)
sum a = (8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012094439166514563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.219e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3579.592546353468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.263016295434681, dt = 0.0012094439166514563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.42861286636753e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001206392060594798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3675.891661568968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.264225739351332, dt = 0.001206392060594798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (1.2%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012033908123550382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3568.8435910059075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.265432131411926, dt = 0.0012033908123550382 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012004403437730798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3724.3389437706164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2666355222242816, dt = 0.0012004403437730798 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.00119754082570438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3614.4686610738954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.267835962568054, dt = 0.00119754082570438 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.898059818321144e-17,2.5673907444456745e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011946924282215012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3649.3145790994504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.269033503393759, dt = 0.0011946924282215012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.50 us (96.6%)
LB move op cnt : 0
LB apply : 1.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011918953208160223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3707.7972080025274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.27022819582198, dt = 0.0011918953208160223 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.5673907444456745e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011891496725998279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3718.066209554446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.271420091142796, dt = 0.0011891496725998279 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011864556525058262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3584.3492243924934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.272609240815396, dt = 0.0011864556525058262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.591949208711867e-17,2.5673907444456745e-16,0)
sum a = (1.1102230246251565e-16,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011838134294880995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.230e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3473.942706367892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.273795696467902, dt = 0.0011838134294880995 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.86 us (89.5%)
LB move op cnt : 0
LB apply : 21.31 us (7.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.5673907444456745e-16,0)
sum a = (1.1102230246251565e-16,1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011812231727215397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 2.1% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3569.582692498924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.27497950989739, dt = 0.0011812231727215397 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.5673907444456745e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.00117868505180099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3680.1127657141074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.276160733070112, dt = 0.00117868505180099 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011761992369399418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3661.697138466605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2773394181219135, dt = 0.0011761992369399418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011737658991688186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3675.7087648614943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.278515617358853, dt = 0.0011737658991688186 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.498001805406602e-16,0)
sum a = (-1.1102230246251565e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011713852105328963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3679.914268875903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.279689383258022, dt = 0.0011713852105328963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011690573442898926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.620087856576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.280860768468555, dt = 0.0011690573442898926 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.498001805406602e-16,0)
sum a = (8.326672684688674e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011667824751072945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.8% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3630.5283084707426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.282029825812845, dt = 0.0011667824751072945 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.93 us (96.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011645607792594484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.227e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3423.649125781562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.283196608287953, dt = 0.0011645607792594484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001162392434824478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.5066729769596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.284361169067212, dt = 0.001162392434824478 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 257.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.498001805406602e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011602776218810845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3542.205466393863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.285523561502036, dt = 0.0011602776218810845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011582165227052871 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3485.567428066377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.286683839123917, dt = 0.0011582165227052871 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (1.1%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 274.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.498001805406602e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001156209321967143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.241e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3359.748953690443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.287842055646622, dt = 0.001156209321967143 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.498001805406602e-16,0)
sum a = (0,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011542562069275376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3603.678833242901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.288998264968589, dt = 0.0011542562069275376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 254.20 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.498001805406602e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011523573676350774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3443.271098189117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.290152521175516, dt = 0.0011523573676350774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.5673907444456745e-16,0)
sum a = (-8.326672684688674e-17,2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001150512997123173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3603.1748372649295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.291304878543151, dt = 0.001150512997123173 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.23 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011487232916073675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3580.861815848901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.292455391540274, dt = 0.0011487232916073675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001146988450682978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3446.9080876375383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.293604114831882, dt = 0.001146988450682978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.99 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011453086775231219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3451.273154537151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.294751103282565, dt = 0.0011453086775231219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011436841790772108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3584.724979184498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.295896411960088, dt = 0.0011436841790772108 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011421151662699709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3536.7239544506947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.297040096139165, dt = 0.0011421151662699709 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011406018542010714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3547.440330698584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.298182211305435, dt = 0.0011406018542010714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011391444623454485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3546.1758603176545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.299322813159637, dt = 0.0011391444623454485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011377432147543925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3509.1869279114703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.300461957621982, dt = 0.0011377432147543925 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 248.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011363983402574891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3460.634570149948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.301599700836737, dt = 0.0011363983402574891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.636779683484747e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011351100726654975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3510.327557710095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.302736099176994, dt = 0.0011351100726654975 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011338786509742429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3400.609039113856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.303871209249659, dt = 0.0011338786509742429 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.3%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.65 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011327043195696312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3436.776997724461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.305005087900634, dt = 0.0011327043195696312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011315873284338546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3467.0848329864366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.306137792220204, dt = 0.0011315873284338546 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 232.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001130527933352895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3429.629889174841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.307269379548638, dt = 0.001130527933352895 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.706168622523819e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001129526396125409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3531.814494565405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3083999074819905, dt = 0.001129526396125409 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011285829847731026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3423.470054010012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.309529433878116, dt = 0.0011285829847731026 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011276979737526848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3531.2665639765064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.310658016862889, dt = 0.0011276979737526848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.76 us (96.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001126871644169497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3492.1568910977803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.311785714836642, dt = 0.001126871644169497 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001126104283992937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.202401836805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.312912586480811, dt = 0.001126104283992937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 274.65 us (96.9%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.8449465006019636e-16,0)
sum a = (-2.7755575615628914e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011253961882737552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.228e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3302.4016461395495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3140386907648045, dt = 0.0011253961882737552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.7755575615628914e-16,0)
sum a = (0,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001124747659363361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3590.101788114583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.315164086953078, dt = 0.001124747659363361 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 259.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.7755575615628914e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011241590071352221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3558.3990235567007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3162888346124415, dt = 0.0011241590071352221 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.7755575615628914e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011236305492084723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3532.5886585296394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.317412993619577, dt = 0.0011236305492084723 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 245.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.7755575615628914e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001123162611173856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3526.7013115706063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.318536624168785, dt = 0.001123162611173856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 231.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011227555268221012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3548.043102663087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.319659786779959, dt = 0.0011227555268221012 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.7755575615628914e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011224096383748543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3524.910673365087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.320782542306781, dt = 0.0011224096383748543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 228.12 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.8449465006019636e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011221252967182891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3491.608747740965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3219049519451564, dt = 0.0011221252967182891 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.8449465006019636e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011219028616395064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.119e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3610.854834839036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.323027077241875, dt = 0.0011219028616395064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.63 us (97.0%)
LB move op cnt : 0
LB apply : 1.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.8449465006019636e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.00112174270206586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3350.79197597215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.324148980103514, dt = 0.00112174270206586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 240.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.8449465006019636e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011216451963073238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3375.763300832261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.32527072280558, dt = 0.0011216451963073238 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.8449465006019636e-16,0)
sum a = (-2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011216107323020268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3385.8176190876943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.326392368001887, dt = 0.0011216107323020268 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.8449465006019636e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011216397078650992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3390.982322247815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.327513978734189, dt = 0.0011216397078650992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.07 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.8449465006019636e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001121732530940942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3546.942290366418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.328635618442054, dt = 0.001121732530940942 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 223.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,-1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001121889619859075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3597.221368794548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.329757350972995, dt = 0.001121889619859075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011221114035936792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3570.417421989038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3308792405928545, dt = 0.0011221114035936792 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011223983220269946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.305e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3094.4174359585713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.332001351996448, dt = 0.0011223983220269946 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011227508262167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3456.029319719952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.333123750318475, dt = 0.0011227508262167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.57 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.001123169378667418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3470.674989829115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.334246501144692, dt = 0.001123169378667418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011236544536065045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3492.1585650718525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3353696705233595, dt = 0.0011236544536065045 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,2.914335439641036e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011242065372642548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3550.1264068168716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.336493324976966, dt = 0.0011242065372642548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.7755575615628914e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011248261281586978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3588.9813526364524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.337617531514231, dt = 0.0011248261281586978 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.09 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.706168622523819e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011255137373851066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3452.0281979428805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.338742357642389, dt = 0.0011255137373851066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 222.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.85722573273506e-17,2.706168622523819e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011262698889104063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3434.9205493248874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3398678713797745, dt = 0.0011262698889104063 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 264.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.706168622523819e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011270951198726184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.3393170199406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.340994141268685, dt = 0.0011270951198726184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.636779683484747e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011279899808855195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3543.7639852027464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.342121236388557, dt = 0.0011279899808855195 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011289550363486637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3492.0398457839574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.343249226369442, dt = 0.0011289550363486637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011299908647629411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3554.7469191711466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.344378181405791, dt = 0.0011299908647629411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011310980590518436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3492.6656974583425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.345508172270554, dt = 0.0011310980590518436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.7755575615628914e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011322772268885992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3579.5626875394587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3466392703296055, dt = 0.0011322772268885992 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.7755575615628914e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011335289910293666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3625.601065212248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.347771547556494, dt = 0.0011335289910293666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011348539896526406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.204e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3387.963983944586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.348905076547523, dt = 0.0011348539896526406 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011362528767050674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.6829303456743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.350039930537176, dt = 0.0011362528767050674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011377263222538425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3508.761249699341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.351176183413881, dt = 0.0011377263222538425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 252.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011392750128458706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3404.1324846834805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.352313909736135, dt = 0.0011392750128458706 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 229.94 us (88.4%)
LB move op cnt : 0
LB apply : 23.16 us (8.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.636779683484747e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011408996518738803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3453.717800782241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.353453184748981, dt = 0.0011408996518738803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011426009599496726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3598.2516568744504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.354594084400855, dt = 0.0011426009599496726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.498001805406602e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011443796752846967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3617.622549718189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.355736685360805, dt = 0.0011443796752846967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.5673907444456745e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011462365540781457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627.4078775776593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.35688106503609, dt = 0.0011462365540781457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 240.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011481723709127595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3566.719214855604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.358027301590168, dt = 0.0011481723709127595 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.63 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011501879191585342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3454.951064954441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.359175473961081, dt = 0.0011501879191585342 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011522840113845322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3598.9296315356596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.360325661880239, dt = 0.0011522840113845322 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.636779683484747e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001154461479778993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3525.873955052036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3614779458916235, dt = 0.001154461479778993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001156721176577939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3676.976967215027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.362632407371403, dt = 0.001156721176577939 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 224.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.498001805406602e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011590639745024775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3690.4887856440905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.363789128547981, dt = 0.0011590639745024775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011614907672050057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3686.6684233205033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.364948192522483, dt = 0.0011614907672050057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001164002469724509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3476.800162589569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.366109683289689, dt = 0.001164002469724509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.23 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.42861286636753e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011666000189511664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3668.958205982911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.367273685759413, dt = 0.0011666000189511664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.463307335887066e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011692843741004488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3717.2531719931444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.368440285778364, dt = 0.0011692843741004488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.463307335887066e-16,0)
sum a = (-5.551115123125783e-17,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011720565171969314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3559.191493603668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.369609570152464, dt = 0.0011720565171969314 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.5326962749261384e-16,0)
sum a = (8.326672684688674e-17,2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011749174535679993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3613.920066180876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.370781626669661, dt = 0.0011749174535679993 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 274.42 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.463307335887066e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011778682123476654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3596.7533685534913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.371956544123229, dt = 0.0011778682123476654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.393918396847994e-16,0)
sum a = (-2.7755575615628914e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011809098469906802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.119e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3788.3625474528303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.373134412335577, dt = 0.0011809098469906802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.3245294578089215e-16,0)
sum a = (0,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.001184043435797145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3742.5373737967598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.374315322182567, dt = 0.001184043435797145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.00118727008244781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3752.6698573429608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3754993656183645, dt = 0.00118727008244781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011905909165502502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3783.752560004776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.376686635700812, dt = 0.0011905909165502502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.393918396847994e-16,0)
sum a = (0,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011940070941961162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3658.3850148779866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.377877226617363, dt = 0.0011940070941961162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011975197985296137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3736.5266599784572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.379071233711559, dt = 0.0011975197985296137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.463307335887066e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012011302403274271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3657.0980331284754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.380268753510089, dt = 0.0012011302403274271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.3592239273284576e-16,0)
sum a = (-6.938893903907228e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012048396585902232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3663.173716027856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.381469883750417, dt = 0.0012048396585902232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 258.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.463307335887066e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012086493211459091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3708.606318059848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.382674723409007, dt = 0.0012086493211459091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001212560525264815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3801.7470848880944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.383883372730153, dt = 0.001212560525264815 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.42861286636753e-16,0)
sum a = (-9.71445146547012e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012165745982869259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3794.1557194614684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3850959332554185, dt = 0.0012165745982869259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.498001805406602e-16,0)
sum a = (8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012206928982613054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3798.7124632636987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.386312507853705, dt = 0.0012206928982613054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012249168145978461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3759.3712220095226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3875332007519665, dt = 0.0012249168145978461 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.6020852139652106e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012292477687314502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3789.8839602699045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.388758117566565, dt = 0.0012292477687314502 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.6020852139652106e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012336872147987298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3925.0206149176597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.389987365335296, dt = 0.0012336872147987298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 271.96 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.6020852139652106e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012382366403273293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3780.5605314381137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.391221052550095, dt = 0.0012382366403273293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 257.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.5326962749261384e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012428975669379202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3794.5342736520483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.392459289190422, dt = 0.0012428975669379202 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.5326962749261384e-16,0)
sum a = (-5.551115123125783e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012476715510589093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3800.780844157957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.39370218675736, dt = 0.0012476715510589093 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0408340855860843e-16,2.498001805406602e-16,0)
sum a = (-6.938893903907228e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012525601846539024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3981.337516940804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3949498583084186, dt = 0.0012525601846539024 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.636779683484747e-16,0)
sum a = (6.938893903907228e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012575650959619014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980.881971288572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.396202418493073, dt = 0.0012575650959619014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.498001805406602e-16,0)
sum a = (-4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012626879502502294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3875.4794623599264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.397459983589035, dt = 0.0012626879502502294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (61.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.5673907444456745e-16,0)
sum a = (6.938893903907228e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012679304505801127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4018.330957670887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.398722671539285, dt = 0.0012679304505801127 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 273.97 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.671474153004283e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012732943385848489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3892.8998288220755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.399990601989865, dt = 0.0012732943385848489 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 255.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.706168622523819e-16,0)
sum a = (-1.3877787807814457e-16,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012787813952604289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3826.553974850702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.40126389632845, dt = 0.0012787813952604289 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.671474153004283e-16,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.001284393441768464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4043.4425754235194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.40254267772371, dt = 0.001284393441768464 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.740863092043355e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012901323402512205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4044.1413077390744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.403827071165479, dt = 0.0012901323402512205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (-8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012959999946585237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4084.6505580238736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.40511720350573, dt = 0.0012959999946585237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (-1.8041124150158794e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.001301998351586216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4122.51618820174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.406413203500389, dt = 0.001301998351586216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.949029909160572e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013081294011258733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4074.0850122212078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.407715201851975, dt = 0.0013081294011258733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.77 us (9.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.23 us (88.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.949029909160572e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013143951777253317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3897.698711450959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.409023331253101, dt = 0.0013143951777253317 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013207977610595924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4128.006713768181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.410337726430826, dt = 0.0013207977610595924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 268.55 us (96.8%)
LB move op cnt : 0
LB apply : 1.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.706168622523819e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013273392769115656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4011.653039459136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4116585241918855, dt = 0.0013273392769115656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.740863092043355e-16,0)
sum a = (4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013340218980620424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4116.883503575579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.412985863468797, dt = 0.0013340218980620424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 257.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013408478451882285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 2.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4065.2532810174075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.414319885366859, dt = 0.0013408478451882285 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 267.39 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.7755575615628914e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013478193877700525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4041.80272555194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.415660733212047, dt = 0.0013478193877700525 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 256.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.740863092043355e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013549388450034034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4238.573846022038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4170085525998175, dt = 0.0013549388450034034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.82 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.5673907444456745e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013622085867193154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4255.115958462551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.418363491444821, dt = 0.0013622085867193154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.6020852139652106e-16,0)
sum a = (-4.163336342344337e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001369631034308042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.115e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4398.024198513531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.41972570003154, dt = 0.001369631034308042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.6020852139652106e-16,0)
sum a = (-1.942890293094024e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013772086616468198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4303.891674988675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.421095331065848, dt = 0.0013772086616468198 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.5673907444456745e-16,0)
sum a = (-1.8041124150158794e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013849439960300087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4409.807677773613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.422472539727495, dt = 0.0013849439960300087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.636779683484747e-16,0)
sum a = (-1.5265566588595902e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013928396191001371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4046.0866654775414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.423857483723524, dt = 0.0013928396191001371 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (0.6%)
patch tree reduce : 500.00 ns (0.1%)
gen split merge : 431.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 517.22 us (98.1%)
LB move op cnt : 0
LB apply : 2.11 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.636779683484747e-16,0)
sum a = (6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014008981677782692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.566e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3201.1452037051536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.425250323342625, dt = 0.0014008981677782692 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.001409122335191901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4343.533579655125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4266512215104035, dt = 0.001409122335191901 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 270.86 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.671474153004283e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014175148715984702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4194.0591855438415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.428060343845595, dt = 0.0014175148715984702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 450.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 240.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.740863092043355e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014260785853023226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4419.689921475754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.429477858717194, dt = 0.0014260785853023226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 222.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.740863092043355e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014348163435628375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4538.022412267932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.430903937302496, dt = 0.0014348163435628375 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.463307335887066e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014437310734911368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4492.110698545847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.432338753646059, dt = 0.0014437310734911368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 235.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.463307335887066e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014528257629326244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4514.673305850947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.43378248471955, dt = 0.0014528257629326244 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.5673907444456745e-16,0)
sum a = (-9.71445146547012e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014621034613322929 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4460.503880900333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.435235310482482, dt = 0.0014621034613322929 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.6020852139652106e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014715672805795334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4591.4206217206965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.436697413943814, dt = 0.0014715672805795334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.58 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.498001805406602e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014812203958288138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.352e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3919.1715845207573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.438168981224393, dt = 0.0014812203958288138 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.2%)
patch tree reduce : 501.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.498001805406602e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014910660462923585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4542.444207519294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.439650201620222, dt = 0.0014910660462923585 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.5673907444456745e-16,0)
sum a = (-2.0816681711721685e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015011075360005567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4565.664254184956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.441141267666515, dt = 0.0015011075360005567 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.42861286636753e-16,0)
sum a = (-3.3306690738754696e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015113482345255177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4640.619194040005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4426423752025155, dt = 0.0015113482345255177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.50 us (9.5%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 238.16 us (88.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.393918396847994e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001521791577662774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4648.605717649937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.444153723437041, dt = 0.001521791577662774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3245294578089215e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015324410680657295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4831.685138615988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.445675515014703, dt = 0.0015324410680657295 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 253.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.255140518769849e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015433002758269989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4875.619502376592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.447207956082769, dt = 0.0015433002758269989 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.255140518769849e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.001554372839000321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4673.433863923444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.448751256358596, dt = 0.001554372839000321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.255140518769849e-16,0)
sum a = (-2.3592239273284576e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015656624640562032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4978.989777653446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.450305629197596, dt = 0.0015656624640562032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (-4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015771729262639065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4961.636973645375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.451871291661653, dt = 0.0015771729262639065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.8%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 341.40 us (97.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3592239273284576e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.001588908069991808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.255e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4525.225080437284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.453448464587916, dt = 0.001588908069991808 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 248.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3592239273284576e-16,0)
sum a = (-9.71445146547012e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016008718089175443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4869.324944323099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.455037372657908, dt = 0.0016008718089175443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016130681261386733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5138.245631395379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.456638244466825, dt = 0.0016130681261386733 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 256.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.255140518769849e-16,0)
sum a = (-9.71445146547012e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016255010741738657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4839.680280310251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.458251312592964, dt = 0.0016255010741738657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.185751579730777e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016381747748439011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5138.574820513468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.459876813667138, dt = 0.0016381747748439011 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.185751579730777e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016510934190209106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5098.001394727962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.461514988441982, dt = 0.0016510934190209106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2898349882893854e-16,0)
sum a = (1.3877787807814457e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016642612662334506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5047.881767962489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.463166081861003, dt = 0.0016642612662334506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 269.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3592239273284576e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016776826441140618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5173.712848437588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.464830343127236, dt = 0.0016776826441140618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.2898349882893854e-16,0)
sum a = (-2.220446049250313e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016913619476750191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5271.301997108145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4665080257713505, dt = 0.0016913619476750191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 237.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1684043449710089e-16,0)
sum a = (-6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017053036383968881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5246.254810260791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.468199387719025, dt = 0.0017053036383968881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017195122431134572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5402.06743042605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.469904691357422, dt = 0.0017195122431134572 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.0990154059319366e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017339923526753919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5512.096370804713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.471624203600535, dt = 0.0017339923526753919 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001748748620373755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5356.475671305531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.47335819595321, dt = 0.001748748620373755 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3418766925686896e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017637857601032318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.118e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5630.076313815646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.475106944573584, dt = 0.0017637857601032318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.393918396847994e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017791085442434545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5385.632782161431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.476870730333688, dt = 0.0017791085442434545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017947218012354818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5464.418909193352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.478649838877931, dt = 0.0017947218012354818 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2724877535296173e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018106304128288168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5527.115021889241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4804445606791665, dt = 0.0018106304128288168 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 229.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.255140518769849e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018268393109728608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.112e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5861.7056931946945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.482255191091995, dt = 0.0018268393109728608 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.2724877535296173e-16,0)
sum a = (-2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018433534743249325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5716.117231475914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.484082030402968, dt = 0.0018433534743249325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (61.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.185751579730777e-16,0)
sum a = (9.71445146547012e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018601779243452722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5777.999182912909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.485925383877293, dt = 0.0018601779243452722 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.203098814490545e-16,0)
sum a = (-2.0816681711721685e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.001877317720947569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5535.644310712861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.487785561801638, dt = 0.001877317720947569 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 238.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.3765711620882257e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018947779576716866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5916.202019014613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4896628795225855, dt = 0.0018947779576716866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 234.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.3592239273284576e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001912563756343243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6038.480702056149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.491557657480257, dt = 0.001912563756343243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (-2.636779683484747e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019306802611826802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5721.913093673923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4934702212366, dt = 0.0019306802611826802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 243.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.203098814490545e-16,0)
sum a = (1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019491326323243618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5961.65483155137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.495400901497782, dt = 0.0019491326323243618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.237793284010081e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019679260387040543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6219.5388192754135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.497350034130107, dt = 0.0019679260387040543 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.203098814490545e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019870656502710107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6101.886015412557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.499317960168811, dt = 0.0019870656502710107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.237793284010081e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.002006556629478617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6297.3550089886885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.501305025819081, dt = 0.002006556629478617 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1163626406917047e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002026404122005355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6179.164420742584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.50331158244856, dt = 0.002026404122005355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 237.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.3071822230491534e-16,0)
sum a = (-4.85722573273506e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020466132466556456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 2.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6345.965005001293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.505337986570565, dt = 0.0020466132466556456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.255140518769849e-16,0)
sum a = (-6.245004513516506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002067189084387917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6255.668658231304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.50738459981722, dt = 0.002067189084387917 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.211772431870429e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020881366664151557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6327.710155105784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5094517889016075, dt = 0.0020881366664151557 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.246466901389965e-16,0)
sum a = (6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.002109460961321181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6341.431975109821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.511539925568022, dt = 0.002109460961321181 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.3158558404290375e-16,0)
sum a = (-6.938893903907228e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002131166861133982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6606.528755449214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.513649386529344, dt = 0.002131166861133982 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.38 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.38524477946811e-16,0)
sum a = (-4.85722573273506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.00215325916629573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6728.283131308004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.515780553390478, dt = 0.00215325916629573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021757425694676467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6769.599502798605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.517933812556773, dt = 0.0021757425694676467 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.229119666630197e-16,0)
sum a = (-1.0408340855860843e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002198621638106626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6783.602665126971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.520109555126241, dt = 0.002198621638106626 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.185751579730777e-16,0)
sum a = (3.469446951953614e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022219007957497605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6856.242136524628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.522308176764347, dt = 0.0022219007957497605 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.1684043449710089e-16,0)
sum a = (-4.85722573273506e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022455843019424087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6845.669329189225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5245300775600965, dt = 0.0022455843019424087 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 281.80 us (97.0%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.2811613709095013e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002269676230745587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6642.626882896581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.526775661862039, dt = 0.002269676230745587 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.3548871186385156e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.002294180447759148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7009.686818831494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.529045338092784, dt = 0.002294180447759148 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.398255205537936e-16,0)
sum a = (3.469446951953614e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023191005855986327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7013.8702182217985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.531339518540543, dt = 0.0023191005855986327 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.458970527197124e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.00234444001776591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7111.2363189807675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.533658619126141, dt = 0.00234444001776591 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 257.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.502338614096544e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002370201830856918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7298.808116183819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.536003059143908, dt = 0.002370201830856918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.396086801192965e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.002396388795054185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7570.60155168581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5383732609747645, dt = 0.002396388795054185 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3613923316734287e-16,0)
sum a = (-4.85722573273506e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002423003332857297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7609.328119493945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5407696497698185, dt = 0.002423003332857297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.323445255636436e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024500474860115573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7528.979382500134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.543192653102675, dt = 0.0024500474860115573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.44 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3993394077104213e-16,0)
sum a = (6.245004513516506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0024775228806036636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7602.756721363165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.545642700588687, dt = 0.0024775228806036636 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 265.72 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.4145182381252184e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.002505430690303637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7506.1287031013835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.54812022346929, dt = 0.002505430690303637 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5959455978986625e-16,2.566306542273189e-16,0)
sum a = (-1.734723475976807e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025337715977446825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.213e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7433.672990350655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.550625654159594, dt = 0.0025337715977446825 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.82 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.502338614096544e-16,0)
sum a = (-9.367506770274758e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.002562545754047294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7766.977960653145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.553159425757339, dt = 0.002562545754047294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5283594662361963e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.002591752736510963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8102.278095581689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.555721971511386, dt = 0.002591752736510963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 251.81 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.5630539357557325e-16,0)
sum a = (3.2959746043559335e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026213915045166184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8123.5061485319975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.558313724247897, dt = 0.0026213915045166184 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5110122314764283e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.00265146035370547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8211.893455430989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.560935115752414, dt = 0.00265146035370547 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 245.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.002681956868525561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8160.320345570797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.563586576106119, dt = 0.002681956868525561 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.5587171270657905e-16,0)
sum a = (3.5561831257524545e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.002712877873266332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8098.1169568097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.566268532974645, dt = 0.002712877873266332 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 631.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 253.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.5153490401663703e-16,0)
sum a = (-4.0766001685454967e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027442193817337006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8264.956593872508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.568981410847911, dt = 0.0027442193817337006 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 242.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.454633718507182e-16,0)
sum a = (-3.729655473350135e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0027759765457541523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8373.436547150062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.571725630229645, dt = 0.0027759765457541523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.88 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.419939248987646e-16,0)
sum a = (5.442694905877232e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.002808143602735783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8575.710499288567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.574501606775399, dt = 0.002808143602735783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.77 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.411265631607762e-16,0)
sum a = (-4.466912950640278e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.002840713822557407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8722.477877273794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.577309750378135, dt = 0.002840713822557407 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 224.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.454633718507182e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.002873679454103635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8748.928269977147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.580150464200693, dt = 0.002873679454103635 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (0.9%)
patch tree reduce : 410.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 273.81 us (96.9%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (-3.469446951953614e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029070316718140007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8640.277379943578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5830241436547965, dt = 0.0029070316718140007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.411265631607762e-16,0)
sum a = (-1.0408340855860843e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029407605226676606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9284.452374388991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5859311753266105, dt = 0.0029407605226676606 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 254.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.3765711620882257e-16,0)
sum a = (-1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.002974854874081396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9180.512829018648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.588871935849278, dt = 0.002974854874081396 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 224.42 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.393918396847994e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030093023632571424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9539.385999393427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.59184679072336, dt = 0.0030093023632571424 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.3071822230491534e-16,0)
sum a = (5.551115123125783e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.003044089348575367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9398.073718353058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.594856093086618, dt = 0.003044089348575367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.393918396847994e-16,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030792008636913422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9461.896878221129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.597900182435193, dt = 0.0030792008636913422 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (-2.42861286636753e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.00311462057505178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9795.055526160355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.600979383298885, dt = 0.00311462057505178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.19 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.411265631607762e-16,0)
sum a = (-2.0816681711721685e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.003150330743607846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9421.162362338326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.604094003873937, dt = 0.003150330743607846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8735013540549517e-16,2.393918396847994e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.003186312191556137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9997.250319312718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.607244334617545, dt = 0.003186312191556137 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 276.36 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.393918396847994e-16,0)
sum a = (6.938893903907228e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.00322254427498954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9795.422563917795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.610430646809101, dt = 0.00322254427498954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.3765711620882257e-16,0)
sum a = (-3.469446951953614e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.003259004863383488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10078.75358256267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.613653191084091, dt = 0.003259004863383488 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.27 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.393918396847994e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.003295670326877586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9782.79459128815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.616912195947474, dt = 0.003295670326877586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 241.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0122792321330962e-16,2.3592239273284576e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033325155323356385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10314.011037588938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.6202078662743515, dt = 0.0033325155323356385 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033695138491764086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10263.323922756634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.623540381806687, dt = 0.0033695138491764086 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.942890293094024e-16,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.00340663716596046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10462.099481075953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.626909895655864, dt = 0.00340663716596046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.003443855918692708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10469.620675680248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.6303165328218245, dt = 0.003443855918692708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8041124150158794e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034811391317536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10941.965289767819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.633760388740518, dt = 0.0034811391317536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.734723475976807e-16,2.393918396847994e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035184544723019747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10900.910438166586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.637241527872272, dt = 0.0035184544723019747 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.14 us (96.8%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.3245294578089215e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.003555768318897953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10660.628236888331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.640759982344574, dt = 0.003555768318897953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 238.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3592239273284576e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035930458449734094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11120.164384446802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.644315750663472, dt = 0.0035930458449734094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 265.29 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6653345369377348e-16,2.3245294578089215e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036302511176301115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11328.930533721745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.647908796508445, dt = 0.0036302511176301115 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3245294578089215e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036673472120715054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11539.809964334318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.651539047626075, dt = 0.0036673472120715054 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.3245294578089215e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.003704296341774657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11219.808774690613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.655206394838147, dt = 0.003704296341774657 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 222.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.255140518769849e-16,0)
sum a = (2.7755575615628914e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.003741060004285714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11668.034668108106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.658910691179922, dt = 0.003741060004285714 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037775991422788866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11831.434036683018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.662651751184208, dt = 0.0037775991422788866 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.255140518769849e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038138743192592667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11659.566494140356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.666429350326487, dt = 0.0038138743192592667 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.26 us (3.7%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.80 us (93.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.220446049250313e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.00384984590901922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12007.821773975164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.670243224645746, dt = 0.00384984590901922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.18 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.457167719820518e-16,2.1510571102112408e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038854742976828296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11870.719836774659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.674093070554765, dt = 0.0038854742976828296 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.220446049250313e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.00392072009690017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12192.124524445064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.677978544852448, dt = 0.00392072009690017 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 253.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.1510571102112408e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.003955544366490753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12439.589220686019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.681899264949348, dt = 0.003955544366490753 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.185751579730777e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.003989908844591663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12273.520768826815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.685854809315839, dt = 0.003989908844591663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.004023776183149094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12432.850203869111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.689844718160431, dt = 0.004023776183149094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.220446049250313e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.06e-03 |
+-----------+-----------+
Info: cfl dt = 0.00405711018641009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12746.97113181309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.69386849434358, dt = 0.00405711018641009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.004089876049932197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12902.527547450583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.697925604529989, dt = 0.004089876049932197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 260.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.12e-03 |
+-----------+-----------+
Info: cfl dt = 0.004122040597538357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12262.43418840606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.702015480579922, dt = 0.004122040597538357 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.004153572513608556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12946.186465699455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.70613752117746, dt = 0.004153572513608556 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 268.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.220446049250313e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.004184442568121259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13051.732623342159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.710291093691069, dt = 0.004184442568121259 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.004214623831938456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13326.214850134449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.71447553625919, dt = 0.004214623831938456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 232.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.004244091879967793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12998.937472887284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.718690160091128, dt = 0.004244091879967793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.249000902703301e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.004272824980030439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13420.902128095982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.722934251971096, dt = 0.004272824980030439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.004300804265510136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13580.127720043032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.727207076951126, dt = 0.004300804265510136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.35 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.004328013890149951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13326.391956630609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.731507881216636, dt = 0.004328013890149951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (61.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0043544411636905235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13789.192627998695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.735835895106786, dt = 0.0043544411636905235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.220446049250313e-16,0)
sum a = (0,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0043800766673973215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13692.373971967021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7401903362704765, dt = 0.0043800766673973215 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.220446049250313e-16,0)
sum a = (1.1102230246251565e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0044049143488941655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13732.118646137087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.744570412937874, dt = 0.0044049143488941655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-16,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.004428951596094799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13621.035844188224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.748975327286768, dt = 0.004428951596094799 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.2898349882893854e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.004452189290392748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13840.798131502454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.753404278882863, dt = 0.004452189290392748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (1.1102230246251565e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.004474631839621598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.297e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12354.675737785632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.757856468173256, dt = 0.004474631839621598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5265566588595902e-16,2.42861286636753e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.00449628719162308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.291e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12476.879565076231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.762331100012878, dt = 0.00449628719162308 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 278.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3183898417423734e-16,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.00451716682955091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13813.006801135894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.766827387204501, dt = 0.00451716682955091 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 247.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796119636642288e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0045372857502862934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14153.040074415578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7713445540340516, dt = 0.0045372857502862934 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 232.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.220446049250313e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.004556662427541387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13842.273427283875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.775881839784338, dt = 0.004556662427541387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1102230246251565e-16,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.004575318761374649 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14239.026234370383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.780438502211879, dt = 0.004575318761374649 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.004593280015934903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14035.043019010098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.785013820973254, dt = 0.004593280015934903 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046105747472868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14687.725052619768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.789607100989189, dt = 0.0046105747472868 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (62.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.2898349882893854e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.004627234723148785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14733.068838271094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.794217675736475, dt = 0.004627234723148785 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.56 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0061396160665481e-16,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.004643294836295366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14002.793324721886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.798844910459624, dt = 0.004643294836295366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.3592239273284576e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.004658793013238737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14287.097668338736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.80348820529592, dt = 0.004658793013238737 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.004673770119610034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14676.227162131765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.808146998309159, dt = 0.004673770119610034 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.004688269863407248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14394.6721681926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.812820768428769, dt = 0.004688269863407248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.004702338696962399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14702.839301719876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.817509038292176, dt = 0.004702338696962399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.004716025718101306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14923.584911988146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.822211376989138, dt = 0.004716025718101306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 233.42 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.004729382570518655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14627.631875654006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8269274027072395, dt = 0.004729382570518655 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 244.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.1510571102112408e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.004742463342859559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14691.756643017532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.831656785277758, dt = 0.004742463342859559 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 237.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.220446049250313e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.004755324465373836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 2.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14026.069182249457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8363992486206175, dt = 0.004755324465373836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.71445146547012e-17,2.220446049250313e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.00476802460227288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14601.66569034248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8411545730859915, dt = 0.00476802460227288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.367506770274758e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.004780624537049959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.121e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15317.519168826098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.845922597688264, dt = 0.004780624537049959 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 261.59 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.020562075079397e-17,2.1510571102112408e-16,0)
sum a = (5.551115123125783e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0047931870469940735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14348.438021544735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.850703222225314, dt = 0.0047931870469940735 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.673617379884035e-17,2.220446049250313e-16,0)
sum a = (5.551115123125783e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.004805776761902134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14966.302560966094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.855496409272308, dt = 0.004805776761902134 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.45931094670027e-17,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.004818460000532019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14503.274271828877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.86030218603421, dt = 0.004818460000532019 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.00483130457659297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15326.62181889091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.865120646034742, dt = 0.00483130457659297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,1.942890293094024e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.00484437956398433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14731.62070622443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.869951950611335, dt = 0.00484437956398433 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.942890293094024e-16,0)
sum a = (1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.004857755008508563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14702.871086251187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.874796330175319, dt = 0.004857755008508563 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.004871501570336696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15339.996395356597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8796540851838275, dt = 0.004871501570336696 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.979727989493313e-17,1.8041124150158794e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.004885690078032512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14996.97763051362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.884525586754164, dt = 0.004885690078032512 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.719519468096792e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.004900390970895702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15666.264909100257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.889411276832197, dt = 0.004900390970895702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 259.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.942890293094024e-16,0)
sum a = (0,-2.6020852139652106e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049156736017385155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15000.074395134143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.894311667803093, dt = 0.0049156736017385155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.45931094670027e-17,2.0122792321330962e-16,0)
sum a = (0,-1.9949319973733282e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.004931605366986542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15362.106758052329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.899227341404831, dt = 0.004931605366986542 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 269.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.37257477290143e-17,2.0122792321330962e-16,0)
sum a = (1.1102230246251565e-16,2.6020852139652106e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.00494825062529311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14915.081373770126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.904158946771818, dt = 0.00494825062529311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.32920668600201e-17,1.8735013540549517e-16,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.004965669359907443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15761.785702895191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.909107197397111, dt = 0.004965669359907443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.43762690325056e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004983915534262809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15136.96684665899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.914072866757018, dt = 0.004983915534262809 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 223.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.361732751176575e-17,2.0122792321330962e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0050030350853642325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15478.572724269543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.919056782291281, dt = 0.0050030350853642325 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.32920668600201e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,-3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.005023063496673967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15570.930375594782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.924059817376645, dt = 0.005023063496673967 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.155734338404329e-17,1.942890293094024e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.005044022892989207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15886.595547425828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.929082880873319, dt = 0.005044022892989207 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.005065918606669703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16050.20741921072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.934126903766309, dt = 0.005065918606669703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.82 us (96.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,2.0816681711721685e-16,0)
sum a = (0,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.005088735180763783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15319.867933999698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.939192822372979, dt = 0.005088735180763783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 234.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,1.8735013540549517e-16,0)
sum a = (1.1102230246251565e-16,6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.005112431804321715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15855.50168837599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.944281557553743, dt = 0.005112431804321715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,1.942890293094024e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.005136937223585348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16263.142566666671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.9493939893580645, dt = 0.005136937223585348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,1.942890293094024e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.005162144245410426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16156.586227180858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.95453092658165, dt = 0.005162144245410426 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.3%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,1.8735013540549517e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.005187904051389856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16344.86504858285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.95969307082706, dt = 0.005187904051389856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,1.942890293094024e-16,0)
sum a = (1.6653345369377348e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.005214020675717225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16094.717108367378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.96488097487845, dt = 0.005214020675717225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 243.50 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.942890293094024e-16,0)
sum a = (1.6653345369377348e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0052402461649422765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16049.642703609845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.970094995554168, dt = 0.0052402461649422765 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.93 us (8.4%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 254.34 us (89.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.112366251504909e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.005266277122717817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15686.25487785368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.97533524171911, dt = 0.005266277122717817 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 225.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.005291753523422435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.115e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17001.01569014266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.980601518841827, dt = 0.005291753523422435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.10 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.942890293094024e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.005316260813998468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16819.433485150814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.985893272365249, dt = 0.005316260813998468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.942890293094024e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.005339336354356718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16352.875626113011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.991209533179248, dt = 0.005339336354356718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.005360481102062316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16873.19903411593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.996548869533605, dt = 0.005360481102062316 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.0816681711721685e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.005379177059542962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16743.160931466733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0019093506356676, dt = 0.005379177059542962 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.84 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.942890293094024e-16,0)
sum a = (-5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0053949103362413275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16621.393803407584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.00728852769521, dt = 0.0053949103362413275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 250.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.005407198764848262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16613.85298648746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.012683438031451, dt = 0.005407198764848262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,1.942890293094024e-16,0)
sum a = (1.6653345369377348e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.005415621976061123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17184.683224736433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.018090636796299, dt = 0.005415621976061123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,1.8735013540549517e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.005419850904256685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16477.66306214042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.02350625877236, dt = 0.005419850904256685 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.28583859910259e-17,1.942890293094024e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.005419673147500803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17017.20104635646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.028926109676617, dt = 0.005419673147500803 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.14 us (96.7%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.0122792321330962e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.005415010688257511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16414.25728073496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0343457828241185, dt = 0.005415010688257511 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.326672684688674e-17,1.8735013540549517e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.005405927305042991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17084.26826974322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.039760793512376, dt = 0.005405927305042991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.005392624462072246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16809.12700309796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.045166720817419, dt = 0.005392624462072246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,1.942890293094024e-16,0)
sum a = (8.326672684688674e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.005375426232340708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16649.626683607865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.050559345279491, dt = 0.005375426232340708 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.8735013540549517e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.005354755453955271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16968.46609024627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.055934771511832, dt = 0.005354755453955271 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.84 us (9.4%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 233.01 us (88.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,1.8735013540549517e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.005331104444942812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 2.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16679.604781600352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.061289526965787, dt = 0.005331104444942812 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 239.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,2.0122792321330962e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.005305003990772879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16897.57286541014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.066620631410729, dt = 0.005305003990772879 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.01 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.0122792321330962e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.005276993986480778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16849.766828608022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.071925635401502, dt = 0.005276993986480778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.245004513516506e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.005247598266852145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16718.98286958911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.077202629387983, dt = 0.005247598266852145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0052173050852922336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16647.708756179847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.082450227654835, dt = 0.0052173050852922336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.632783294297951e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0051865536745992575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16618.22340109168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.087667532740127, dt = 0.0051865536745992575 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 240.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-17,2.0816681711721685e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0051557265199419725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16051.588712541461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.092854086414727, dt = 0.0051557265199419725 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.551115123125783e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.005125146466966913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15870.488344890444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.098009812934669, dt = 0.005125146466966913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 239.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.10e-03 |
+-----------+-----------+
Info: cfl dt = 0.00509507756066056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15910.454966576828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.103134959401636, dt = 0.00509507756066056 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 285.47 us (97.0%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.005065728498754373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15317.552718217115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.108230036962297, dt = 0.005065728498754373 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.005037257708038874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15488.366791951812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.113295765461052, dt = 0.005037257708038874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.64 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 5.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.005009779242414189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15837.0990636492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1183330231690904, dt = 0.005009779242414189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.98e-03 |
+-----------+-----------+
Info: cfl dt = 0.004983368906182918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15728.426985688977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.123342802411504, dt = 0.004983368906182918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.97758476261356e-16,0)
sum a = (5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.004958070193382969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15664.389841670736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1283261713176875, dt = 0.004958070193382969 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.97758476261356e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0049338997886730065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15565.120329717864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.13328424151107, dt = 0.0049338997886730065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 223.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.00491085249349932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15757.566480001296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.138218141299744, dt = 0.00491085249349932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 259.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.004888905525619145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14833.959958447245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.143128993793243, dt = 0.004888905525619145 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0469737016526324e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.004868022196191352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.194e-03 | 0.5% | 4.2% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14743.616824946886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.148017899318862, dt = 0.004868022196191352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0122792321330962e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.004848155003005802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14513.033585409574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.152885921515054, dt = 0.004848155003005802 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 226.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0816681711721685e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.004829248196979367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15518.482567357605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.15773407651806, dt = 0.004829248196979367 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 256.44 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.1163626406917047e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.004811239886766298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15186.049779987876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.162563324715039, dt = 0.004811239886766298 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0122792321330962e-16,0)
sum a = (5.551115123125783e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.004794063747053434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15187.50062901811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.167374564601806, dt = 0.004794063747053434 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.004777650392640813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15277.55798974602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.172168628348859, dt = 0.004777650392640813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 248.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.004761928474696919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14850.939574497947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1769462787415, dt = 0.004761928474696919 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 227.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.004746825548918321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.211e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14156.454415955657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.181708207216197, dt = 0.004746825548918321 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.004732268758528097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14667.06832910704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.186455032765115, dt = 0.004732268758528097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.0643209364124004e-16,0)
sum a = (1.3877787807814457e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.004718185368592483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.117e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15256.40150081999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.191187301523643, dt = 0.004718185368592483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 252.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0643209364124004e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.004704503182269042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14849.136856521976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.195905486892236, dt = 0.004704503182269042 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 236.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.0643209364124004e-16,0)
sum a = (1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.004691150864425846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14828.035507841225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.200609990074505, dt = 0.004691150864425846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 223.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.0469737016526324e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046780581936021 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14726.666142238302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.205301140938931, dt = 0.0046780581936021 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0469737016526324e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.004665156259478096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14431.262802879875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.209979199132533, dt = 0.004665156259478096 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 232.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.05 us (95.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0643209364124004e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.004652377619820916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14475.974629640834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.214644355392012, dt = 0.004652377619820916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0643209364124004e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.004639656428196506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14450.546779239894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2192967330118325, dt = 0.004639656428196506 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0469737016526324e-16,0)
sum a = (-2.0816681711721685e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.00462692854151147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14618.01494073456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.223936389440029, dt = 0.00462692854151147 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 258.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,2.0643209364124004e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.004614131614597041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14120.780048780136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.22856331798154, dt = 0.004614131614597041 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.42 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (-2.0816681711721685e-17,1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0046012051875077885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 2.2% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14214.543436409178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.233177449596137, dt = 0.0046012051875077885 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 283.14 us (97.0%)
LB move op cnt : 0
LB apply : 1.60 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0383000842727483e-16,0)
sum a = (-3.469446951953614e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0045880907699215705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.208e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13717.697053312782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.237778654783645, dt = 0.0045880907699215705 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.95 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.0426368929626904e-16,0)
sum a = (-3.469446951953614e-18,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.00457473192594662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14462.649552225774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.242366745553566, dt = 0.00457473192594662 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.983276824019109e-16,0)
sum a = (-1.9081958235744878e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.004561074361725545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14430.281475679414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2469414774795125, dt = 0.004561074361725545 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0187844451680093e-16,0)
sum a = (-1.474514954580286e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.004547066017441252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14121.42259618853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.251502551841238, dt = 0.004547066017441252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0339632755828063e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.004532657164649775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14317.371725489304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.256049617858679, dt = 0.004532657164649775 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.0383000842727483e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.004517800509268681 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13593.5082920601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.260582275023329, dt = 0.004517800509268681 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 248.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.0296264668928643e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.004502451300021759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13809.674563518538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.265100075532597, dt = 0.004502451300021759 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.0816681711721685e-16,0)
sum a = (-2.42861286636753e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.004486567441669921 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14247.424492473046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.269602526832619, dt = 0.004486567441669921 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 230.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0990154059319366e-16,0)
sum a = (-3.122502256758253e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.004470109611937344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14359.019694314416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.274089094274289, dt = 0.004470109611937344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.1510571102112408e-16,0)
sum a = (6.938893903907228e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.004453041380667679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13684.276650797112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.278559203886227, dt = 0.004453041380667679 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 231.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.203098814490545e-16,0)
sum a = (6.938893903907228e-18,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.004435329329415963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14067.912465032947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.283012245266894, dt = 0.004435329329415963 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.203098814490545e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.004416943169400078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13571.31857583766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.28744757459631, dt = 0.004416943169400078 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.004397855855503647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13886.107347596655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.291864517765711, dt = 0.004397855855503647 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,2.1510571102112408e-16,0)
sum a = (9.020562075079397e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.004378043693845233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13612.91336264729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.296262373621214, dt = 0.004378043693845233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.004357486440311312 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13581.892109660947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.300640417315059, dt = 0.004357486440311312 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.185751579730777e-16,0)
sum a = (-6.938893903907228e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.004336167387398182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.118e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14032.140818406093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.304997903755371, dt = 0.004336167387398182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 265.16 us (96.9%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,2.185751579730777e-16,0)
sum a = (-4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.004314073436725073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13124.853992841081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.30933407114277, dt = 0.004314073436725073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 223.50 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (-6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0042911951546709065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13508.813730047745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.313648144579495, dt = 0.0042911951546709065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.255140518769849e-16,0)
sum a = (-5.551115123125783e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.004267526808751913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13545.534267229063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.317939339734165, dt = 0.004267526808751913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.004243066382596334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13358.168935915352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.322206866542917, dt = 0.004243066382596334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 223.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.004217815567682607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13294.225905829951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.326449932925513, dt = 0.004217815567682607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (-6.938893903907228e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.004191779730383129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13238.084648054746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3306677484931955, dt = 0.004191779730383129 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.220446049250313e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.004164967853288226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.189e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12696.794612278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3348595282235785, dt = 0.004164967853288226 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 244.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.004137392450263106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13023.981084799516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.339024496076867, dt = 0.004137392450263106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.004109069455200902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13240.091292733343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.34316188852713, dt = 0.004109069455200902 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 279.13 us (97.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0816681711721685e-17,2.0469737016526324e-16,0)
sum a = (-8.326672684688674e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.08e-03 |
+-----------+-----------+
Info: cfl dt = 0.004080018084961732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12353.273773264293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.347270957982332, dt = 0.004080018084961732 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,1.97758476261356e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.004050260677514486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12414.572102212042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.351350976067294, dt = 0.004050260677514486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,1.9081958235744878e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 4.02e-03 |
+-----------+-----------+
Info: cfl dt = 0.004019822506807674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.7% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12596.019843978489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.355401236744808, dt = 0.004019822506807674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.163336342344337e-17,1.8388068845354155e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.003988731576371225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12292.084985366937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.359421059251616, dt = 0.003988731576371225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.469446951953614e-17,1.8388068845354155e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.96e-03 |
+-----------+-----------+
Info: cfl dt = 0.003957018394077083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12647.672397336139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.363409790827988, dt = 0.003957018394077083 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 247.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7755575615628914e-17,1.8041124150158794e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.003924715730849257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11997.135074249045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.367366809222065, dt = 0.003924715730849257 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3877787807814457e-17,1.942890293094024e-16,0)
sum a = (-1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038918583664021974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12476.83197184193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.371291524952914, dt = 0.0038918583664021974 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.10 us (96.9%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.938893903907228e-18,1.942890293094024e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0038584828252926345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12009.530107675788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3751833833193166, dt = 0.0038584828252926345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 255.48 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0122792321330962e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.00382462710668928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11835.302402885252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.379041866144609, dt = 0.00382462710668928 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 257.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.1510571102112408e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.003790330411296376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11614.356967590851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.382866493251298, dt = 0.003790330411296376 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.1510571102112408e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.003755632868813445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11779.585800005312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3866568236625945, dt = 0.003755632868813445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 257.81 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.0816681711721685e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0037205752691803267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11776.261155624965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.390412456531408, dt = 0.0037205752691803267 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0122792321330962e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.003685198800652162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11867.663905223266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.394133031800588, dt = 0.003685198800652162 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.942890293094024e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036495447974838023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11453.263246252407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.39781823060124, dt = 0.0036495447974838023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 238.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.0816681711721685e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0036136544996894565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.203e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10924.536685279792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.401467775398724, dt = 0.0036136544996894565 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035775688269938937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11153.159008309292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.405081429898414, dt = 0.0035775688269938937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 245.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,2.0122792321330962e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.003541328168719459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11120.01666129457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.408658998725408, dt = 0.003541328168719459 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.8735013540549517e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0035049721909711853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11119.80745402724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.412200326894127, dt = 0.0035049721909711853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.85 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.8041124150158794e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.003468539662102123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.179e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10701.715008384914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.415705299085098, dt = 0.003468539662102123 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 246.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0034320682970732284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10520.041976200846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.4191738387472, dt = 0.0034320682970732284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 641.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.942890293094024e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.003395594620975473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10146.251745629073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.422605907044273, dt = 0.003395594620975473 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-18,1.8041124150158794e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.003359153851663623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10834.228318730133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.426001501665249, dt = 0.003359153851663623 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.8041124150158794e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0033227798011662923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10593.692174662154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.429360655516913, dt = 0.0033227798011662923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.3%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.8041124150158794e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032865047952893634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10205.872582973772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.432683435318079, dt = 0.0032865047952893634 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 235.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.8735013540549517e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032503596106210715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10313.083811916162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.4359699401133685, dt = 0.0032503596106210715 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,1.942890293094024e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0032143734279777144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10249.781973798374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.439220299723989, dt = 0.0032143734279777144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.86 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0122792321330962e-16,0)
sum a = (-5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031785738011977983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9659.146417697839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.4424346731519675, dt = 0.0031785738011977983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0031429866400978224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9644.730975443343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.445613246953165, dt = 0.0031429866400978224 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.01 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0122792321330962e-16,0)
sum a = (1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.003107636206341846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9776.658637521383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.448756233593263, dt = 0.003107636206341846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 260.39 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030725451209462204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9551.842401790449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.451863869799605, dt = 0.0030725451209462204 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.70 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0122792321330962e-16,0)
sum a = (-1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.04e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030377343821368303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9582.422205498306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.454936414920551, dt = 0.0030377343821368303 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 222.02 us (88.0%)
LB move op cnt : 0
LB apply : 23.19 us (9.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.1510571102112408e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 3.00e-03 |
+-----------+-----------+
Info: cfl dt = 0.0030032233922948756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 2.4% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9601.098993602032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.457974149302688, dt = 0.0030032233922948756 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 250.13 us (96.6%)
LB move op cnt : 0
LB apply : 1.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1510571102112408e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0029690299927649664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9273.039967014449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.460977372694982, dt = 0.0029690299927649664 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.94e-03 |
+-----------+-----------+
Info: cfl dt = 0.002935170505352197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9303.358793296362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.463946402687747, dt = 0.002935170505352197 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.002901659779399693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9160.353059054152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.466881573193099, dt = 0.002901659779399693 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 228.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,1.942890293094024e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028685112434113954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9230.372119225385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.469783232972499, dt = 0.0028685112434113954 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.16 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.0122792321330962e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0028357369602639813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8873.475724292295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.47265174421591, dt = 0.0028357369602639813 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,1.942890293094024e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.002803347685134044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8822.672902653747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.475487481176174, dt = 0.002803347685134044 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.002771352925350157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8708.482759572687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.478290828861308, dt = 0.002771352925350157 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.78 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.002739761001462182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8374.59312670131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.481062181786658, dt = 0.002739761001462182 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.220446049250313e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.002708579108900824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8619.222092147256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.48380194278812, dt = 0.002708579108900824 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.00267781337967793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8533.899517456557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.486510521897021, dt = 0.00267781337967793 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026474689436513494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8366.692472455416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.489188335276698, dt = 0.0026474689436513494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.498001805406602e-16,0)
sum a = (-2.220446049250313e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0026175499889469584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8244.135313308374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.49183580422035, dt = 0.0026175499889469584 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.49 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (-1.3877787807814457e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.002588059821194066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.6% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8099.593059915946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.494453354209297, dt = 0.002588059821194066 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.78 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.498001805406602e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0025590009212888283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7883.56288419181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.497041414030491, dt = 0.0025590009212888283 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.002530375001453416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8003.7421995946015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.49960041495178, dt = 0.002530375001453416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 267.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (-1.1102230246251565e-16,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.002502183059406439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7927.0468253282415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.502130789953233, dt = 0.002502183059406439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (0.9%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 293.10 us (97.2%)
LB move op cnt : 0
LB apply : 1.39 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.002474425430502876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.226e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7348.795044595337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.504632973012639, dt = 0.002474425430502876 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 244.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.002447101837739553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7576.466122789667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.507107398443142, dt = 0.002447101837739553 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.002420211439555387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7808.59804913932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.509554500280881, dt = 0.002420211439555387 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.1510571102112408e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.002393752875384495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7626.483066782262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.511974711720437, dt = 0.002393752875384495 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.29 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.0816681711721685e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.002367724308945131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7492.509978163005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5143684645958215, dt = 0.002367724308945131 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.002342123469268663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7562.01722713487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.516736188904766, dt = 0.002342123469268663 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 259.71 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.2898349882893854e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0023169476894906683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7182.506120011506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5190783123740355, dt = 0.0023169476894906683 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.220446049250313e-16,0)
sum a = (1.1102230246251565e-16,-1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022921939434411304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7208.779195399391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.521395260063526, dt = 0.0022921939434411304 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.77 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.0816681711721685e-16,0)
sum a = (-5.551115123125783e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.002267858880083015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7293.367387487521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.523687454006968, dt = 0.002267858880083015 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.220446049250313e-16,0)
sum a = (-1.6653345369377348e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.002243938855858245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7036.6116257653275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.525955312887051, dt = 0.002243938855858245 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.1510571102112408e-16,0)
sum a = (-1.1102230246251565e-16,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0022204299650079536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6971.304101128848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.528199251742909, dt = 0.0022204299650079536 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.0816681711721685e-16,0)
sum a = (-8.326672684688674e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.002197328067939746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7072.728174770709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.530419681707917, dt = 0.002197328067939746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 251.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.0816681711721685e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.002174628817719035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6602.228661959712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.532617009775857, dt = 0.002174628817719035 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.1510571102112408e-16,0)
sum a = (-8.326672684688674e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021523276847644837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6764.69259791125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.534791638593576, dt = 0.0021523276847644837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.2898349882893854e-16,0)
sum a = (-1.3877787807814457e-16,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.002130419979829337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6843.002529483736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.53694396627834, dt = 0.002130419979829337 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.2898349882893854e-16,0)
sum a = (5.551115123125783e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.11e-03 |
+-----------+-----------+
Info: cfl dt = 0.0021089008753511778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6606.52246307659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.53907438625817, dt = 0.0021089008753511778 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.09e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020877654252525924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6585.376203319941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.541183287133521, dt = 0.0020877654252525924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.07e-03 |
+-----------+-----------+
Info: cfl dt = 0.002067008583274445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6328.426330071428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.543271052558773, dt = 0.002067008583274445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 253.92 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.2898349882893854e-16,0)
sum a = (-8.326672684688674e-17,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.05e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020466252199221233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6374.071158319787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.545338061142048, dt = 0.0020466252199221233 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.39 us (95.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.03e-03 |
+-----------+-----------+
Info: cfl dt = 0.002026610138103272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6486.103885155997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.54738468636197, dt = 0.002026610138103272 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 227.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 2.01e-03 |
+-----------+-----------+
Info: cfl dt = 0.0020069580875333947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6425.625447782216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5494112965000735, dt = 0.0020069580875333947 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.2%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7755575615628914e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.99e-03 |
+-----------+-----------+
Info: cfl dt = 0.001987663777983218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6377.88712418851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.551418254587607, dt = 0.001987663777983218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (0.8%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 374.50 us (97.5%)
LB move op cnt : 0
LB apply : 1.98 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.3592239273284576e-16,0)
sum a = (-1.6653345369377348e-16,5.204170427930421e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.97e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019687218914390013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.296e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5519.661334961133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.55340591836559, dt = 0.0019687218914390013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.377642775528102e-17,2.42861286636753e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.95e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019501270932442013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6201.968565025914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.555374640257029, dt = 0.0019501270932442013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.43 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5102810375396984e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019318740422879016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.201e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5845.928630758842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5573247673502735, dt = 0.0019318740422879016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.00191395740030247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5995.843321513443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.559256641392562, dt = 0.00191395740030247 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 260.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-17,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018963718403298686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.172e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5878.698918229194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.561170598792864, dt = 0.0018963718403298686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 231.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.0306980803327406e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-7.979727989493313e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018791120544130418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6018.418293253551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.563066970633193, dt = 0.0018791120544130418 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 263.55 us (96.9%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.0306980803327406e-17,2.3592239273284576e-16,0)
sum a = (-5.551115123125783e-17,-6.591949208711867e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018621727605658527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5846.9341346302845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.564946082687606, dt = 0.0018621727605658527 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.683753385137379e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.001845548709072097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5883.693852005959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.566808255448172, dt = 0.001845548709072097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336808689942018e-17,2.42861286636753e-16,0)
sum a = (-1.3877787807814457e-16,1.3357370765021415e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018292346881613214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5753.017100360863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.568653804157244, dt = 0.0018292346881613214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 243.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9898639947466563e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,1.1535911115245767e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018132255291063784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5742.5588251438485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.570483038845405, dt = 0.0018132255291063784 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 391.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 253.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.683753385137379e-17,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,-8.673617379884035e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001797516110785014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5595.60751678693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.572296264374512, dt = 0.001797516110785014 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9898639947466563e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017821013637452094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5704.38319326768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.574093780485297, dt = 0.0017821013637452094 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.77 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-1.7780915628762273e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017669762738115483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5496.8207864197675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.575875881849043, dt = 0.0017669762738115483 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.37 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-4.5536491244391186e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.001752135885267517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5370.957151089601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.5776428581228545, dt = 0.001752135885267517 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 247.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8163916471489756e-17,2.498001805406602e-16,0)
sum a = (-5.551115123125783e-17,-1.1270281582986819e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017375753036464475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5332.259040655881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.579394994008122, dt = 0.0017375753036464475 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.30 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-6.223320470066795e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.001723289698161621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5473.798741935979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.581132569311769, dt = 0.001723289698161621 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 243.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2959746043559335e-17,2.498001805406602e-16,0)
sum a = (5.551115123125783e-17,6.288372600415926e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.001709274303804114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5380.16168071161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.58285585900993, dt = 0.001709274303804114 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.642919299551295e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,-3.9898639947466563e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016955244231349686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5434.001739419959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.584565133313735, dt = 0.0016955244231349686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (0.7%)
patch tree reduce : 572.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 405.83 us (97.7%)
LB move op cnt : 0
LB apply : 1.92 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2959746043559335e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-1.196959198423997e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016820354277965416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.332e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4582.6085336028245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.58626065773687, dt = 0.0016820354277965416 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 225.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016688027597661348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5198.165623284762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.587942693164666, dt = 0.0016688027597661348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8163916471489756e-17,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,2.168404344971009e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016558219323734194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5264.302049799718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.589611495924432, dt = 0.0016558219323734194 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.42861286636753e-16,0)
sum a = (0,-1.474514954580286e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016430885311016744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5181.865481413752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.591267317856805, dt = 0.0016430885311016744 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.122502256758253e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,5.898059818321144e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001630598214191399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5126.432457653421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.592910406387907, dt = 0.001630598214191399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2959746043559335e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016183467130635922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5094.319306608414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.594541004602099, dt = 0.0016183467130635922 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 277.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.001606329832578671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4907.47239214047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.596159351315162, dt = 0.001606329832578671 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.55 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7704895589362195e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,1.1796119636642288e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.001594543451145904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4899.521296106348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.597765681147741, dt = 0.001594543451145904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.31 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.377642775528102e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015829835206970881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5025.239690034845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.599360224598887, dt = 0.0015829835206970881 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.903127820947816e-17,2.3592239273284576e-16,0)
sum a = (0,-2.8796409701215e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015716460665372218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5037.93935854585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.600943208119584, dt = 0.0015716460665372218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-17,2.42861286636753e-16,0)
sum a = (2.7755575615628914e-17,-1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015605271870839344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4956.731702678053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.602514854186121, dt = 0.0015605271870839344 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2551405187698492e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-1.0755285551056204e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015496230535065702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4771.646386802705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.604075381373205, dt = 0.0015496230535065702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 246.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6479873021779667e-17,2.42861286636753e-16,0)
sum a = (-5.551115123125783e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015389299092749872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4763.271022297747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.605625004426711, dt = 0.0015389299092749872 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (0.9%)
patch tree reduce : 430.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 282.01 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8214596497756474e-17,2.3592239273284576e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015284440696273645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4627.599027887602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.607163934335986, dt = 0.0015284440696273645 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.071532165918825e-18,2.42861286636753e-16,0)
sum a = (-8.326672684688674e-17,-1.6306400674181987e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015181619209655773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 2.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4758.90946589264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.608692378405614, dt = 0.0015181619209655773 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.806255641895632e-18,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,3.469446951953614e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015080799201860474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4617.7801359602945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.610210540326579, dt = 0.0015080799201860474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8214596497756474e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,-6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014981945939533472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4708.886991721002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.611718620246766, dt = 0.0014981945939533472 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 252.99 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (0,-1.0408340855860843e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.001488502537923249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4735.797690739798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.613216814840719, dt = 0.001488502537923249 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.65 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-17,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,1.734723475976807e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014790004159213961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4659.583134299255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.614705317378642, dt = 0.0014790004159213961 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,6.591949208711867e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.001469684959083235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4569.568230092703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.616184317794564, dt = 0.001469684959083235 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 240.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.382710778154774e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-1.5959455978986625e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014605529649604355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4642.209867863131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.617654002753647, dt = 0.0014605529649604355 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 236.19 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.165870343657673e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,1.734723475976807e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014516012965985522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4659.525835120522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.619114555718608, dt = 0.0014516012965985522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.83 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.992397996059992e-17,2.42861286636753e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.001442826881590287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4486.493696007723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.620566157015206, dt = 0.001442826881590287 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.14 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.42861286636753e-17,2.42861286636753e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014342267111083897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.300e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3995.0934274912397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.622008983896797, dt = 0.0014342267111083897 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.02 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.361026734705064e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001425797838921822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.218e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4237.990736393075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.623443210607905, dt = 0.001425797838921822 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 240.03 us (96.6%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5561831257524545e-17,2.3592239273284576e-16,0)
sum a = (-2.7755575615628914e-17,-1.942890293094024e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014175373803985384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4455.877399222488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.624869008446827, dt = 0.0014175373803985384 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 255.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7538735181131813e-17,2.3592239273284576e-16,0)
sum a = (0,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.00140944251149795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4332.650640698112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6262865458272255, dt = 0.00140944251149795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3310346708438345e-17,2.42861286636753e-16,0)
sum a = (-2.7755575615628914e-17,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014015104677558175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4436.7125273842075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.627695988338724, dt = 0.0014015104677558175 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 238.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.905661822261152e-17,2.42861286636753e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013937385432641351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4257.376083908973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6290974988064795, dt = 0.0013937385432641351 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6591823321385775e-17,2.42861286636753e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.001386124089648277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4320.438148771441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6304912373497435, dt = 0.001386124089648277 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3660947373317356e-17,2.42861286636753e-16,0)
sum a = (0,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013786645150434948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4166.956198714182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6318773614393915, dt = 0.0013786645150434948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (61.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8417884405097507e-17,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-1.8041124150158794e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001371357283072656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4356.275896286013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.633256025954435, dt = 0.001371357283072656 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.215718466126788e-19,2.2898349882893854e-16,0)
sum a = (0,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013641999118269167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4267.591334836486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.634627383237508, dt = 0.0013641999118269167 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (0.9%)
patch tree reduce : 411.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 278.92 us (96.9%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.228388472693467e-18,2.3592239273284576e-16,0)
sum a = (2.7755575615628914e-17,-1.5959455978986625e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013571899728508688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.184e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4149.40509117899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.635991583149335, dt = 0.0013571899728508688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-17,2.2898349882893854e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013503250901335205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.120e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4360.940098809083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.637348773122186, dt = 0.0013503250901335205 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 254.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.806255641895632e-18,2.2898349882893854e-16,0)
sum a = (-2.7755575615628914e-17,2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013436029391063762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4251.701648301586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.63869909821232, dt = 0.0013436029391063762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 226.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-17,2.3592239273284576e-16,0)
sum a = (0,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.001337021245649694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.117e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4330.524411864254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.640042701151426, dt = 0.001337021245649694 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.190088388420719e-17,2.42861286636753e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.001330577785107904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4176.070731736833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.641379722397076, dt = 0.001330577785107904 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013242703813150624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4201.452350614949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.642710300182184, dt = 0.0013242703813150624 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3444106938820255e-17,2.498001805406602e-16,0)
sum a = (0,2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001318096905631119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4226.664621087715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.644034570563499, dt = 0.001318096905631119 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.58 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.951563910473908e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,1.3183898417423734e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013120552759896419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4066.2480807157303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.645352667469131, dt = 0.0013120552759896419 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (1.2%)
patch tree reduce : 581.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9949319973733282e-17,2.636779683484747e-16,0)
sum a = (0,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013061434559576163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3961.193971881262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.64666472274512, dt = 0.0013061434559576163 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8648277366750676e-17,2.706168622523819e-16,0)
sum a = (0,-6.938893903907228e-18,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.001300359453807804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4062.289582971133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.647970866201078, dt = 0.001300359453807804 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 258.00 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9949319973733282e-17,2.8449465006019636e-16,0)
sum a = (0,-1.6653345369377348e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.00129470132160411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4008.8393025760747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.649271225654886, dt = 0.00129470132160411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0842021724855044e-17,2.914335439641036e-16,0)
sum a = (0,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012891671543003073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.121e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4157.100772545385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.65056592697649, dt = 0.0012891671543003073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.474514954580286e-17,2.7755575615628914e-16,0)
sum a = (0,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012837550888524457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4049.0260490568903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.65185509413079, dt = 0.0012837550888524457 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7780915628762273e-17,2.8449465006019636e-16,0)
sum a = (2.7755575615628914e-17,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012784633033451837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4027.242332339464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.653138849219642, dt = 0.0012784633033451837 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 246.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6046192152785466e-17,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012732900161322408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.229e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3745.540632821875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6544173125229875, dt = 0.0012732900161322408 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 231.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.8449465006019636e-16,0)
sum a = (5.551115123125783e-17,6.245004513516506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012682334849911346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3623.5520382193927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.65569060253912, dt = 0.0012682334849911346 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.32 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5153490401663703e-17,2.8449465006019636e-16,0)
sum a = (0,9.020562075079397e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012632920062922953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3979.9023914141044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.656958836024111, dt = 0.0012632920062922953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.688821387764051e-17,2.914335439641036e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.001258463914182652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980.10514424613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6582221280304035, dt = 0.001258463914182652 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5612511283791264e-17,2.7755575615628914e-16,0)
sum a = (-5.551115123125783e-17,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012537475797837106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3935.2549146994284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.659480591944586, dt = 0.0012537475797837106 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.53 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.469446951953614e-18,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012491414104041352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3821.9253592425043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.66073433952437, dt = 0.0012491414104041352 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012446438487668107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3774.357416678252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.661983480934774, dt = 0.0012446438487668107 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 251.70 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.636779683484747e-16,0)
sum a = (-2.7755575615628914e-17,-7.632783294297951e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012402533722503364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3973.401853685643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.663228124783541, dt = 0.0012402533722503364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.3%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 228.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336808689942018e-18,2.636779683484747e-16,0)
sum a = (5.551115123125783e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012359684921448787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3950.2638634439995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.664468378155791, dt = 0.0012359684921448787 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-1.5265566588595902e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012317877529222883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3923.7440997906183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.665704346647936, dt = 0.0012317877529222883 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 224.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.806255641895632e-18,2.636779683484747e-16,0)
sum a = (0,-2.220446049250313e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012277097315203651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.118e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3965.05294311436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.666936134400858, dt = 0.0012277097315203651 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2551405187698492e-17,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012237330366411574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.118e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3954.22421646848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.668163844132379, dt = 0.0012237330366411574 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3010426069826053e-17,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,1.0408340855860843e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012198563080631293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3709.627762183222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6693875771690205, dt = 0.0012198563080631293 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.540979117872439e-18,2.7755575615628914e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012160782159670522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 2.3% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3882.3374468920533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.670607433477084, dt = 0.0012160782159670522 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (0.9%)
patch tree reduce : 420.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 279.37 us (96.9%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.734723475976807e-17,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,-2.914335439641036e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012123974602754552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3821.2380146493956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.671823511693051, dt = 0.0012123974602754552 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.636779683484747e-16,0)
sum a = (-8.326672684688674e-17,-2.0816681711721685e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012088127700054336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3733.341479513332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6730359091533265, dt = 0.0012088127700054336 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.636779683484747e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012053229026346554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3823.6527602585356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.674244721923332, dt = 0.0012053229026346554 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0816681711721685e-17,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012019266434803383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3767.7689803133053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.675450044825967, dt = 0.0012019266434803383 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 237.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6020852139652106e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011986228050910248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3760.4896065977864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.676651971469447, dt = 0.0011986228050910248 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 260.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.5673907444456745e-16,0)
sum a = (0,-4.85722573273506e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011954102266509177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.199e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3598.8074413501763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.677850594274537, dt = 0.0011954102266509177 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.683753385137379e-17,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011922877733965796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.121e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3838.7021182714666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.679046004501188, dt = 0.0011922877733965796 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163336342344337e-17,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.001189254336045774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3737.035788271547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.680238292274585, dt = 0.001189254336045774 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.204170427930421e-17,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011863088302382196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3766.558845187268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.681427546610631, dt = 0.0011863088302382196 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.724587470723463e-17,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011834501959880439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3594.481907583842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.682613855440869, dt = 0.0011834501959880439 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.112366251504909e-17,2.706168622523819e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011806773971477064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3727.0532903367384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.683797305636857, dt = 0.0011806773971477064 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.765421556309548e-17,2.706168622523819e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011779894208831564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3751.6625915150053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.684977983034005, dt = 0.0011779894208831564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.806255641895632e-17,2.636779683484747e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.001175385277160009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3643.0909811721795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6861559724548885, dt = 0.001175385277160009 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-17,2.636779683484747e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011728639982405036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3728.0877018507745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.687331357732049, dt = 0.0011728639982405036 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.05 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.847089727481716e-17,2.706168622523819e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011704246381910191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.202e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.694441555888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.688504221730289, dt = 0.0011704246381910191 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.194034422677078e-17,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011680662723999133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.205e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3497.775416279067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.689674646368481, dt = 0.0011680662723999133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011657879971054697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3713.792909714317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6908427126408805, dt = 0.0011657879971054697 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.673617379884035e-17,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011635889289337092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3691.750011725471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.692008500637986, dt = 0.0011635889289337092 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.500145032286355e-17,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011614682044458586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3671.518712622458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.69317208956692, dt = 0.0011614682044458586 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.33 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.847089727481716e-17,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011594249796952486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.705395786586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.694333557771365, dt = 0.0011594249796952486 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.43 us (95.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,2.706168622523819e-16,0)
sum a = (-5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011574584297934032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3649.758859079601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.695492982751061, dt = 0.0011574584297934032 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 242.54 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0234868508263162e-16,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011555677484851345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3641.20905000638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6966504411808545, dt = 0.0011555677484851345 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 250.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0928757898653885e-16,2.636779683484747e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011537521477323971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3583.1866721905303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.69780600892934, dt = 0.0011537521477323971 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 256.20 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.7755575615628914e-16,0)
sum a = (-5.551115123125783e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011520108573066948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3501.5328245111305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.698959761077072, dt = 0.0011520108573066948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 223.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.8879238130678e-17,2.7755575615628914e-16,0)
sum a = (1.3877787807814457e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011503431243898435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3675.5583578053047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.700111771934378, dt = 0.0011503431243898435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0061396160665481e-16,2.706168622523819e-16,0)
sum a = (-8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011487482131828592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632.468129164524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.701262115058769, dt = 0.0011487482131828592 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.706168622523819e-16,0)
sum a = (-5.551115123125783e-17,-2.0816681711721685e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011472254045227783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3499.7677544059597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.702410863271951, dt = 0.0011472254045227783 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 227.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011457739955072067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3581.9234409630417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.703558088676474, dt = 0.0011457739955072067 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.5673907444456745e-16,0)
sum a = (-5.551115123125783e-17,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011443932991263889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.178e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3500.559595616431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.704703862671981, dt = 0.0011443932991263889 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 245.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011430826439026097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3599.6329231330437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.705848255971108, dt = 0.0011430826439026097 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 262.29 us (96.9%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1275702593849246e-16,2.5673907444456745e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001141841373536726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3519.4785633763913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.70699133861501, dt = 0.001141841373536726 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 226.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011406688465616468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3657.4978754454064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.708133179988547, dt = 0.0011406688465616468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 259.12 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011395644360025598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3595.0324559283936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7092738488351085, dt = 0.0011395644360025598 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.498001805406602e-16,0)
sum a = (1.6653345369377348e-16,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011385275290437358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3509.3965873036996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.710413413271111, dt = 0.0011385275290437358 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3357370765021415e-16,2.498001805406602e-16,0)
sum a = (2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011375575267017154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3481.2919731239217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.711551940800154, dt = 0.0011375575267017154 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.5673907444456745e-16,0)
sum a = (5.551115123125783e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011366538435047073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.265e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3237.975696347934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.712689498326856, dt = 0.0011366538435047073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 251.30 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3357370765021415e-16,2.42861286636753e-16,0)
sum a = (5.551115123125783e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011358159071780218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.177e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3475.7694317553564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.713826152170361, dt = 0.0011358159071780218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.43982048506075e-16,2.498001805406602e-16,0)
sum a = (-8.326672684688674e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001135043158335364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.339e-03 | 0.4% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3054.705593163509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.714961968077539, dt = 0.001135043158335364 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 264.79 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4224732503009818e-16,2.498001805406602e-16,0)
sum a = (1.3877787807814457e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011343350501758214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3431.4803847943253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.716097011235874, dt = 0.0011343350501758214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 235.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3704315460216776e-16,2.636779683484747e-16,0)
sum a = (-1.6653345369377348e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011336910481863762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3571.968175131628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.71723134628605, dt = 0.0011336910481863762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 225.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3357370765021415e-16,2.5673907444456745e-16,0)
sum a = (1.6653345369377348e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011331106298497848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3612.1682575291306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.718365037334236, dt = 0.0011331106298497848 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 242.34 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2663481374630692e-16,2.636779683484747e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011325932843576601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3490.748782241625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.719498147964085, dt = 0.0011325932843576601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.12 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.706168622523819e-16,0)
sum a = (1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001132138512328601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3455.7939947600144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.720630741248443, dt = 0.001132138512328601 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (-1.1102230246251565e-16,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011317458255312178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3498.7631047062214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.721762879760772, dt = 0.0011317458255312178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 246.25 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.5673907444456745e-16,0)
sum a = (1.3877787807814457e-16,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001131414746611899 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.181e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3451.2162034130124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.722894625586303, dt = 0.001131414746611899 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.196959198423997e-16,2.498001805406602e-16,0)
sum a = (-8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001131144808827179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3500.25831350601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.724026040332915, dt = 0.001131144808827179 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (62.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2663481374630692e-16,2.5673907444456745e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011309355557805494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627.4050767708186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.725157185141742, dt = 0.0011309355557805494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 263.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3357370765021415e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001130786541163593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3470.1239200503023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7262881206975225, dt = 0.001130786541163593 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3357370765021415e-16,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011306973285012717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3562.1058404755754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.727418907238686, dt = 0.0011306973285012717 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 230.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,2.7755575615628914e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011306674909012681 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3509.3087464843015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7285496045671875, dt = 0.0011306674909012681 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,2.706168622523819e-16,0)
sum a = (0,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.001130696610807216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.166e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3489.8341569022987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.729680272058089, dt = 0.001130696610807216 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.706168622523819e-16,0)
sum a = (2.498001805406602e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011307842797557074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3554.094337563643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.730810968668896, dt = 0.0011307842797557074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011309300981369485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.6% | 2.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3373.2238490232858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.731941752948652, dt = 0.0011309300981369485 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 244.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,2.636779683484747e-16,0)
sum a = (8.326672684688674e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011311336749589246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3513.0053370445075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.733072683046789, dt = 0.0011311336749589246 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.04 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.5673907444456745e-16,0)
sum a = (2.220446049250313e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011313946276149721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3476.224981925295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.734203816721748, dt = 0.0011313946276149721 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011317125816546262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3515.7831010326313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.735335211349363, dt = 0.0011317125816546262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 278.09 us (96.9%)
LB move op cnt : 0
LB apply : 1.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011320871705576218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3432.702957663914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.736466923931018, dt = 0.0011320871705576218 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.498001805406602e-16,0)
sum a = (2.498001805406602e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011325180355109493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.121e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3635.4887925164203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.737599011101576, dt = 0.0011325180355109493 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.498001805406602e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011330048251888456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3549.7588934883966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.738731529137087, dt = 0.0011330048251888456 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.39 us (96.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.706168622523819e-16,0)
sum a = (2.220446049250313e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011335471955355985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3449.5241326792934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.739864533962275, dt = 0.0011335471955355985 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011341448095510843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.188e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3434.846937357985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7409980811578105, dt = 0.0011341448095510843 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.13e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011347973370789046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3408.4048177590275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.742132225967362, dt = 0.0011347973370789046 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.05 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.706168622523819e-16,0)
sum a = (-1.3877787807814457e-16,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001135504454597043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3554.145950876912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7432670233044405, dt = 0.001135504454597043 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.7755575615628914e-16,0)
sum a = (5.551115123125783e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011362658450109323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3553.448457509131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.744402527759037, dt = 0.0011362658450109323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 231.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.7755575615628914e-16,0)
sum a = (0,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011370811974488297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3603.1197905360577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.745538793604048, dt = 0.0011370811974488297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 271.25 us (96.9%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.8449465006019636e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011379502070594189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3438.5658636043786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.746675874801497, dt = 0.0011379502070594189 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.636779683484747e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011388725748115284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3602.260872337763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.747813825008556, dt = 0.0011388725748115284 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 258.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.8449465006019636e-16,0)
sum a = (-1.6653345369377348e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011398480072958915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3536.0568858980046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.748952697583368, dt = 0.0011398480072958915 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 235.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011408762165288494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3567.7855098207256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.750092545590664, dt = 0.0011408762165288494 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.7755575615628914e-16,0)
sum a = (-1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.001141956919757918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3497.8469330084504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.751233421807193, dt = 0.001141956919757918 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 245.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.8449465006019636e-16,0)
sum a = (5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.00114308983926912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3561.9768635438154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.752375378726951, dt = 0.00114308983926912 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 249.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.14e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011442747021960275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3536.1344475923056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.75351846856622, dt = 0.0011442747021960275 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.7755575615628914e-16,0)
sum a = (-5.551115123125783e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011455112403303983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3569.948815550732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.754662743268416, dt = 0.0011455112403303983 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.7755575615628914e-16,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011467991899343675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3602.1107448983557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.755808254508747, dt = 0.0011467991899343675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.61 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.706168622523819e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011481382915540846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.198e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3444.732191143625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.756955053698681, dt = 0.0011481382915540846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.636779683484747e-16,0)
sum a = (-8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011495282898347436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.262e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3276.1101746245427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.758103191990235, dt = 0.0011495282898347436 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 260.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.706168622523819e-16,0)
sum a = (-5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011509689333369306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3518.2790454963083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.759252720280069, dt = 0.0011509689333369306 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.706168622523819e-16,0)
sum a = (1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011524599743542065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3613.610062158413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7604036892134065, dt = 0.0011524599743542065 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.15e-03 |
+-----------+-----------+
Info: cfl dt = 0.001154001168731882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3477.229105875324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7615561491877605, dt = 0.001154001168731882 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 234.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.5673907444456745e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011555922756868906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3569.3333603411024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.762710150356493, dt = 0.0011555922756868906 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.706168622523819e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011572330576287227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3671.528809970713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.76386574263218, dt = 0.0011572330576287227 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.706168622523819e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011589232799813368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3643.0818885288604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.765022975689808, dt = 0.0011589232799813368 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 234.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.7755575615628914e-16,0)
sum a = (-1.1102230246251565e-16,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001160662711006007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3651.314861366885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.76618189896979, dt = 0.001160662711006007 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.1%)
patch tree reduce : 490.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 246.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.001162451121625033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3567.4036681798057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.767342561680795, dt = 0.001162451121625033 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 224.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (1.1102230246251565e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.16e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011642882852462757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 2.1% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3614.855337383511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.768505012802421, dt = 0.0011642882852462757 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.18 us (96.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (8.326672684688674e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011661739775884411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3585.4133375133915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.769669301087667, dt = 0.0011661739775884411 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.636779683484747e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011681079765070853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3626.5920073446955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7708354750652555, dt = 0.0011681079765070853 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.0%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 275.74 us (96.9%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.5673907444456745e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001170090061821274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632.4463669612574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.772003583041762, dt = 0.001170090061821274 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 460.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.5673907444456745e-16,0)
sum a = (-1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.001172120015140856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3653.917876932286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.773173673103583, dt = 0.001172120015140856 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 228.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.636779683484747e-16,0)
sum a = (-1.249000902703301e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.17e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011741976196943062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3734.8718344927624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.774345793118724, dt = 0.0011741976196943062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.5673907444456745e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011763226601570924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3708.0900645626657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7755199907384185, dt = 0.0011763226601570924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.636779683484747e-16,0)
sum a = (-1.6653345369377348e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011784949224805188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3716.3331079995896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.776696313398576, dt = 0.0011784949224805188 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 266.48 us (96.9%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.706168622523819e-16,0)
sum a = (-1.3877787807814457e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011807141937210219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3578.105973091025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.777874808321056, dt = 0.0011807141937210219 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 256.84 us (96.7%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.7755575615628914e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.18e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011829802618698653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3581.334316365155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.779055522514777, dt = 0.0011829802618698653 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 257.79 us (96.8%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.914335439641036e-16,0)
sum a = (8.326672684688674e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011852929156832082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.196e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3559.988616950867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.780238502776647, dt = 0.0011852929156832082 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.7755575615628914e-16,0)
sum a = (8.326672684688674e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011876519445125073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3596.434540551915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.78142379569233, dt = 0.0011876519445125073 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 253.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.914335439641036e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011900571381352294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3704.3765835765284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.782611447636842, dt = 0.0011900571381352294 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 251.56 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.706168622523819e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.19e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011925082865858363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3709.2722134710293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.783801504774978, dt = 0.0011925082865858363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 227.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.8449465006019636e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0011950051799870225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3700.2880840941384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.784994013061564, dt = 0.0011950051799870225 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.8449465006019636e-16,0)
sum a = (1.249000902703301e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.001197547608381176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3733.4707832038634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.786189018241551, dt = 0.001197547608381176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 248.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.8449465006019636e-16,0)
sum a = (-6.938893903907228e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012001353615620405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3726.154029135822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.787386565849932, dt = 0.0012001353615620405 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.38 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.7755575615628914e-16,0)
sum a = (1.249000902703301e-16,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.20e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012027682289065577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3631.720595521001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.788586701211494, dt = 0.0012027682289065577 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.7755575615628914e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012054459992068807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3795.877997990366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7897894694404, dt = 0.0012054459992068807 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.09 us (96.6%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.7755575615628914e-16,0)
sum a = (-2.7755575615628914e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.001208168460502516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3655.392823782067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.790994915439607, dt = 0.001208168460502516 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 249.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.7755575615628914e-16,0)
sum a = (1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012109353999126232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3755.8181744310946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.79220308390011, dt = 0.0012109353999126232 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.8449465006019636e-16,0)
sum a = (8.326672684688674e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.21e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012137466034684088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3774.3146933793964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.793414019300022, dt = 0.0012137466034684088 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.8449465006019636e-16,0)
sum a = (1.1102230246251565e-16,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012166018559456526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3875.487173459709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.794627765903491, dt = 0.0012166018559456526 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 252.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.8449465006019636e-16,0)
sum a = (1.1102230246251565e-16,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012195009406973242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.210e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3621.018470992567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.795844367759437, dt = 0.0012195009406973242 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 227.66 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.983724378680108e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.22e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012224436394863037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3880.61979776664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.797063868700135, dt = 0.0012224436394863037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 238.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.8449465006019636e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012254297323182018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833.5604905987575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.798286312339621, dt = 0.0012254297323182018 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (-4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012284589972742666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3771.2718204799085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.799511742071939, dt = 0.0012284589972742666 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 452.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 244.68 us (96.6%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.706168622523819e-16,0)
sum a = (1.3877787807814457e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.001231531210344399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3800.4514960812257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.800740201069213, dt = 0.001231531210344399 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 256.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.23e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012346461452602607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3842.944082428547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.801971732279558, dt = 0.0012346461452602607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,2.706168622523819e-16,0)
sum a = (1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012378035733285055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3790.255180422947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.803206378424818, dt = 0.0012378035733285055 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 244.72 us (89.3%)
LB move op cnt : 0
LB apply : 1.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.706168622523819e-16,0)
sum a = (5.551115123125783e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012410032632641085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3830.6806227843554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8044441819981465, dt = 0.0012410032632641085 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.706168622523819e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.24e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012442449810238518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3944.503523919198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.80568518526141, dt = 0.0012442449810238518 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 244.80 us (96.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012475284896399323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.168e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833.708433701188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.806929430242434, dt = 0.0012475284896399323 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 229.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.8449465006019636e-16,0)
sum a = (6.938893903907228e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012508535490537505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957.5078251332193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.808176958732074, dt = 0.0012508535490537505 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.25e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012542199159498674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3872.1354155736794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.809427812281127, dt = 0.0012542199159498674 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.73 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (69.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.8449465006019636e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012576273435901718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3761.5218874786397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.810682032197077, dt = 0.0012576273435901718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 231.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (-8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012610755816482811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3904.7722204706106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.811939659540667, dt = 0.0012610755816482811 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 282.70 us (97.0%)
LB move op cnt : 0
LB apply : 1.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.26e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012645643760441855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898.1038658720936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.813200735122315, dt = 0.0012645643760441855 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 234.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012680934687791944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4029.0144309991115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.81446529949836, dt = 0.0012680934687791944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.8449465006019636e-16,0)
sum a = (-5.551115123125783e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.27e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012716625977711887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4018.5247020571765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.815733392967139, dt = 0.0012716625977711887 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.8449465006019636e-16,0)
sum a = (1.3877787807814457e-16,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012752714966902362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3959.6092204148686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.81700505556491, dt = 0.0012752714966902362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 245.65 us (96.6%)
LB move op cnt : 0
LB apply : 1.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012789198947945977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980.2964282796206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.818280327061601, dt = 0.0012789198947945977 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.1%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.71 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.8449465006019636e-16,0)
sum a = (9.71445146547012e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.28e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012826075167671675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951.5963678299026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.819559246956395, dt = 0.0012826075167671675 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.7755575615628914e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012863340825523914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.130e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4087.7315127869697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.820841854473162, dt = 0.0012863340825523914 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 255.40 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.7755575615628914e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012900993071937098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3919.0685042658897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.822128188555714, dt = 0.0012900993071937098 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.8449465006019636e-16,0)
sum a = (-6.938893903907228e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.29e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012939029006715772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4096.384192470567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.823418287862908, dt = 0.0012939029006715772 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.8449465006019636e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0012977445677421037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4001.2253017788657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.82471219076358, dt = 0.0012977445677421037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 226.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.8449465006019636e-16,0)
sum a = (4.163336342344337e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.30e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013016240077763858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4009.9637479285107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.826009935331322, dt = 0.0013016240077763858 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 226.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-16,2.7755575615628914e-16,0)
sum a = (1.3877787807814457e-16,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013055409146005702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4116.320549418539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8273115593390985, dt = 0.0013055409146005702 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.914335439641036e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.00130949497633672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4128.453703319008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.828617100253699, dt = 0.00130949497633672 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 541.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 235.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.914335439641036e-16,0)
sum a = (-1.3877787807814457e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.31e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013134858752445523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.136e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4148.150224128906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.829926595230035, dt = 0.0013134858752445523 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 263.21 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.8449465006019636e-16,0)
sum a = (2.7755575615628914e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013175132875640964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.180e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4007.092230279683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.83124008110528, dt = 0.0013175132875640964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.914335439641036e-16,0)
sum a = (2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.32e-03 |
+-----------+-----------+
Info: cfl dt = 0.001321576883359366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4146.753041385582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.832557594392844, dt = 0.001321576883359366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 254.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.914335439641036e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013256763263630965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4007.416312837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8338791712762035, dt = 0.0013256763263630965 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 236.90 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.914335439641036e-16,0)
sum a = (8.326672684688674e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013298112738226353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4110.0578515511625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.835204847602567, dt = 0.0013298112738226353 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (1.0%)
patch tree reduce : 491.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 294.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.914335439641036e-16,0)
sum a = (5.551115123125783e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.33e-03 |
+-----------+-----------+
Info: cfl dt = 0.001333981376347062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.192e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4015.814375402319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.836534658876389, dt = 0.001333981376347062 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,2.983724378680108e-16,0)
sum a = (-1.3877787807814457e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013381862777556144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4252.934609109985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.837868640252736, dt = 0.0013381862777556144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.983724378680108e-16,0)
sum a = (6.938893903907228e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.34e-03 |
+-----------+-----------+
Info: cfl dt = 0.001342425614927514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4138.41824258556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.839206826530492, dt = 0.001342425614927514 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.983724378680108e-16,0)
sum a = (-1.1102230246251565e-16,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013466990176532712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4167.664627768939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.840549252145419, dt = 0.0013466990176532712 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,3.0531133177191805e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.35e-03 |
+-----------+-----------+
Info: cfl dt = 0.001351006108487555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4202.207721329398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.841895951163073, dt = 0.001351006108487555 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 228.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,3.0531133177191805e-16,0)
sum a = (8.326672684688674e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013553465026037435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4231.893406604145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.84324695727156, dt = 0.0013553465026037435 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,3.0531133177191805e-16,0)
sum a = (4.163336342344337e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013597198076502172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4302.459666484557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.844602303774164, dt = 0.0013597198076502172 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.71 us (96.7%)
LB move op cnt : 0
LB apply : 1.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.983724378680108e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.36e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013641256236085243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.197e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4090.5550274980897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.845962023581814, dt = 0.0013641256236085243 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-16,2.983724378680108e-16,0)
sum a = (4.163336342344337e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.001368563542653504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4300.164398007633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.847326149205422, dt = 0.001368563542653504 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 254.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.37e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013730331490154676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4289.5067144411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.848694712748076, dt = 0.0013730331490154676 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 230.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0755285551056204e-16,2.8449465006019636e-16,0)
sum a = (1.1102230246251565e-16,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.001377534018844564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4235.026231763886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.850067745897091, dt = 0.001377534018844564 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 236.07 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.983724378680108e-16,0)
sum a = (-2.7755575615628914e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.38e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013820657200774237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4250.992188997266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.851445279915936, dt = 0.0013820657200774237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.914335439641036e-16,0)
sum a = (1.3877787807814457e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013866278123061916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.141e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4359.859333292492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.852827345636014, dt = 0.0013866278123061916 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 226.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1449174941446927e-16,3.0531133177191805e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.39e-03 |
+-----------+-----------+
Info: cfl dt = 0.0013912198466500718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.132e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4411.578707440408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.85421397344832, dt = 0.0013912198466500718 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 270.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,3.0531133177191805e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.00139584136562951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.217e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4115.206461503279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.85560519329497, dt = 0.00139584136562951 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 221.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.214306433183765e-16,3.0531133177191805e-16,0)
sum a = (4.163336342344337e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.40e-03 |
+-----------+-----------+
Info: cfl dt = 0.00140049190304311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4387.135087420244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.857001034660599, dt = 0.00140049190304311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (0.9%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 271.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,3.0531133177191805e-16,0)
sum a = (5.551115123125783e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014051709838474311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4225.136473380258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.858401526563642, dt = 0.0014051709838474311 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 233.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836953722228372e-16,3.0531133177191805e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014098781240397703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4448.988450440669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.85980669754749, dt = 0.0014098781240397703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 237.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,3.122502256758253e-16,0)
sum a = (-8.326672684688674e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.41e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014146128305440795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4381.202057291303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.86121657567153, dt = 0.0014146128305440795 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 233.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (63.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,3.0531133177191805e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014193746011001262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4412.055459449517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.862631188502074, dt = 0.0014193746011001262 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 225.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,3.0531133177191805e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.42e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014241629241560445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4463.757973756402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.864050563103174, dt = 0.0014241629241560445 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 241.12 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3530843112619095e-16,3.122502256758253e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014289772787643964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4452.198036027348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.86547472602733, dt = 0.0014289772787643964 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,3.122502256758253e-16,0)
sum a = (1.3877787807814457e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.43e-03 |
+-----------+-----------+
Info: cfl dt = 0.001433817134481892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.140e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4512.278799786879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.866903703306094, dt = 0.001433817134481892 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 259.52 us (96.8%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,3.122502256758253e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014386819512729075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.176e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4389.7699160142865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.868337520440576, dt = 0.0014386819512729075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,3.122502256758253e-16,0)
sum a = (9.71445146547012e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.44e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014435711794169176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.173e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4414.628179933453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.869776202391849, dt = 0.0014435711794169176 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.0%)
patch tree reduce : 521.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,3.0531133177191805e-16,0)
sum a = (4.163336342344337e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014484842594200164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.215e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4277.705635912404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.871219773571266, dt = 0.0014484842594200164 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 511.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,3.0531133177191805e-16,0)
sum a = (-8.326672684688674e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.45e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014534206219306443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4489.100245189234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.872668257830686, dt = 0.0014534206219306443 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.63 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.983724378680108e-16,0)
sum a = (1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014583796876596728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.137e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4602.527401909969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8741216784526165, dt = 0.0014583796876596728 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 252.03 us (96.7%)
LB move op cnt : 0
LB apply : 1.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.914335439641036e-16,0)
sum a = (4.163336342344337e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.46e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014633608673050031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4515.0569142027325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.875580058140276, dt = 0.0014633608673050031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014683635614808023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4625.769408063695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.877043419007581, dt = 0.0014683635614808023 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.8449465006019636e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.47e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014733871606515453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.122e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4713.192048663542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.878511782569062, dt = 0.0014733871606515453 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 233.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.983724378680108e-16,0)
sum a = (-1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014784310450710095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4660.827177275925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.879985169729713, dt = 0.0014784310450710095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 264.95 us (96.8%)
LB move op cnt : 0
LB apply : 1.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.983724378680108e-16,0)
sum a = (2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.48e-03 |
+-----------+-----------+
Info: cfl dt = 0.001483494584726348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4413.285551264058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.881463600774785, dt = 0.001483494584726348 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 249.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.914335439641036e-16,0)
sum a = (-5.551115123125783e-17,1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014885771392874297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4561.799259099846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.882947095359511, dt = 0.0014885771392874297 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 260.15 us (96.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.983724378680108e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.49e-03 |
+-----------+-----------+
Info: cfl dt = 0.0014936780580615588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4688.407323701491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.884435672498799, dt = 0.0014936780580615588 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457167719820518e-16,2.914335439641036e-16,0)
sum a = (2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.001498796679953751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4780.266933558078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.88592935055686, dt = 0.001498796679953751 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457167719820518e-16,2.8796409701215e-16,0)
sum a = (5.551115123125783e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.50e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015039323334327037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.127e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4788.500544315882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.887428147236814, dt = 0.0015039323334327037 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 221.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.914335439641036e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.00150908433650261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.311e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4130.837405321357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.888932079570246, dt = 0.00150908433650261 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 233.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457167719820518e-16,2.8796409701215e-16,0)
sum a = (4.163336342344337e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.51e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015142519966809746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4772.6969021982095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.890441163906749, dt = 0.0015142519966809746 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 255.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457167719820518e-16,2.914335439641036e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001519434610982581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.183e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4607.993660288457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.891955415903429, dt = 0.001519434610982581 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.949029909160572e-16,0)
sum a = (2.7755575615628914e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.52e-03 |
+-----------+-----------+
Info: cfl dt = 0.001524631465909743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4837.021047400717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.893474850514412, dt = 0.001524631465909743 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 279.79 us (97.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.949029909160572e-16,0)
sum a = (4.163336342344337e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.53e-03 |
+-----------+-----------+
Info: cfl dt = 0.00152984183744901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.206e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4550.3274932537515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.894999481980322, dt = 0.00152984183744901 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.949029909160572e-16,0)
sum a = (-1.3877787807814457e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.00153506499107446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4793.500962033981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.896529323817771, dt = 0.00153506499107446 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 263.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.949029909160572e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.54e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015403001817577305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4818.476818813459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.898064388808845, dt = 0.0015403001817577305 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.914335439641036e-16,0)
sum a = (4.163336342344337e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015455466539849286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4888.3331020653495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.899604688990603, dt = 0.0015455466539849286 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457167719820518e-16,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.55e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015508036417805607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.134e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4904.983430463033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.901150235644589, dt = 0.0015508036417805607 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 249.87 us (96.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5265566588595902e-16,2.914335439641036e-16,0)
sum a = (1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015560703687386363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.187e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4701.625186986463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.902701039286369, dt = 0.0015560703687386363 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 224.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.914335439641036e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.56e-03 |
+-----------+-----------+
Info: cfl dt = 0.001561346048061057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.139e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4920.216389316026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9042571096551075, dt = 0.001561346048061057 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 261.74 us (96.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.949029909160572e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015666298826034549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4744.1144467944105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9058184557031685, dt = 0.0015666298826034549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 234.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.983724378680108e-16,0)
sum a = (1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.57e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015719210649285948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.153e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4891.1541550830925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.907385085585772, dt = 0.0015719210649285948 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 276.99 us (96.8%)
LB move op cnt : 0
LB apply : 1.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.983724378680108e-16,0)
sum a = (2.7755575615628914e-17,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015772187773674781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4751.614123346433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9089570066507004, dt = 0.0015772187773674781 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.3%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 224.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.949029909160572e-16,0)
sum a = (4.163336342344337e-17,-9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.58e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015825221920882642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4958.850185737136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9105342254280675, dt = 0.0015825221920882642 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 257.96 us (96.7%)
LB move op cnt : 0
LB apply : 1.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (69.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.949029909160572e-16,0)
sum a = (0,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015878304711731549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4982.809148506753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.912116747620156, dt = 0.0015878304711731549 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 245.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.914335439641036e-16,0)
sum a = (-2.7755575615628914e-17,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.59e-03 |
+-----------+-----------+
Info: cfl dt = 0.001593142766703334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.154e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4951.448394577632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9137045780913295, dt = 0.001593142766703334 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 231.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (61.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.949029909160572e-16,0)
sum a = (-1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0015984582208520988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.324e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4331.863747594947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.915297720858033, dt = 0.0015984582208520988 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 232.88 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,2.914335439641036e-16,0)
sum a = (0,-1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.60e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016037759659862758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4994.470921732978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9168961790788845, dt = 0.0016037759659862758 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.37 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.949029909160572e-16,0)
sum a = (-1.3877787807814457e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016090951247760509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5044.647026821861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9184999550448705, dt = 0.0016090951247760509 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 229.76 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.949029909160572e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.61e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016144148103132937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.162e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4983.895999622971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.920109050169646, dt = 0.0016144148103132937 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 226.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.914335439641036e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.62e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016197341262384826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5171.179060369069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9217234649799595, dt = 0.0016197341262384826 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 256.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.983724378680108e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001625052166876318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4987.953939786179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.923343199106198, dt = 0.001625052166876318 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.0%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 242.64 us (96.6%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3183898417423734e-16,2.949029909160572e-16,0)
sum a = (1.3877787807814457e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.63e-03 |
+-----------+-----------+
Info: cfl dt = 0.001630368017380121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4911.724287952761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.924968251273074, dt = 0.001630368017380121 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.0%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 264.44 us (96.9%)
LB move op cnt : 0
LB apply : 1.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3877787807814457e-16,2.983724378680108e-16,0)
sum a = (-6.938893903907228e-18,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016356807538850794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.169e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5020.181279813159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.926598619290454, dt = 0.0016356807538850794 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 230.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (62.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.983724378680108e-16,0)
sum a = (2.0816681711721685e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.64e-03 |
+-----------+-----------+
Info: cfl dt = 0.001640989443670425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5126.021634182833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9282343000443385, dt = 0.001640989443670425 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 229.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.983724378680108e-16,0)
sum a = (1.3877787807814457e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016462931453306144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5213.7753402386525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.929875289488009, dt = 0.0016462931453306144 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.249000902703301e-16,2.983724378680108e-16,0)
sum a = (0,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.65e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016515909089555615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.6% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4979.863714361034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.931521582633339, dt = 0.0016515909089555615 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (1.2%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 237.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.983724378680108e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016568817763199836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5184.696745193533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.933173173542294, dt = 0.0016568817763199836 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 249.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1796119636642288e-16,3.0531133177191805e-16,0)
sum a = (0,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.66e-03 |
+-----------+-----------+
Info: cfl dt = 0.001662164781081905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.186e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5028.315922325758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.934830055318614, dt = 0.001662164781081905 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 250.42 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,2.983724378680108e-16,0)
sum a = (0,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016674389489903618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.171e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5111.478511994843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.936492220099696, dt = 0.0016674389489903618 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 248.76 us (96.6%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-16,3.0531133177191805e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.67e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016727032981023282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.167e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5143.276923179011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9381596590486865, dt = 0.0016727032981023282 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-16,3.0531133177191805e-16,0)
sum a = (6.938893903907228e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016779568390089031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5315.569143581823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.939832362346789, dt = 0.0016779568390089031 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (0.9%)
patch tree reduce : 421.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.11 us (97.0%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1102230246251565e-16,3.0184188481996443e-16,0)
sum a = (-6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.68e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016831985750707548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.185e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5095.590861334625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.941510319185798, dt = 0.0016831985750707548 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0408340855860843e-16,3.0531133177191805e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.001688427502662846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5274.794275480094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.943193517760869, dt = 0.001688427502662846 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 258.97 us (96.7%)
LB move op cnt : 0
LB apply : 1.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.71445146547012e-17,3.0184188481996443e-16,0)
sum a = (0,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.69e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016936426114284309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.244e-03 | 0.5% | 2.1% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4887.326793878756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.944881945263532, dt = 0.0016936426114284309 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 232.92 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (61.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.0184188481996443e-16,0)
sum a = (6.938893903907228e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0016988428845423047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.146e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5319.544886057547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.94657558787496, dt = 0.0016988428845423047 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.1%)
LB compute : 261.76 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.326672684688674e-17,3.0878077872387166e-16,0)
sum a = (-1.3877787807814457e-17,-6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.70e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017040272989833074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5307.345252637079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.948274430759502, dt = 0.0017040272989833074 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (1.2%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 228.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.326672684688674e-17,3.0531133177191805e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017091948258160252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.157e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5301.284749665482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.949978458058486, dt = 0.0017091948258160252 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 224.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.0531133177191805e-16,0)
sum a = (-6.938893903907228e-18,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.71e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017143444304816762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5386.231304699758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.951687652884302, dt = 0.0017143444304816762 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (0.8%)
patch tree reduce : 451.00 ns (0.1%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 435.92 us (97.8%)
LB move op cnt : 0
LB apply : 1.75 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (71.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.0531133177191805e-16,0)
sum a = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017194750730981155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.394e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4425.942145096495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.953401997314783, dt = 0.0017194750730981155 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 262.95 us (96.7%)
LB move op cnt : 0
LB apply : 1.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.0184188481996443e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.72e-03 |
+-----------+-----------+
Info: cfl dt = 0.001724585708768899 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5119.135851633063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.955121472387881, dt = 0.001724585708768899 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 230.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.0184188481996443e-16,0)
sum a = (0,-8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.00172967528790136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.125e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5516.546107162247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.95684605809665, dt = 0.00172967528790136 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 229.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.0184188481996443e-16,0)
sum a = (0,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.73e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017347427565335913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5323.734081752696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.958575733384551, dt = 0.0017347427565335913 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 230.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.0878077872387166e-16,0)
sum a = (-6.938893903907228e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017397870566702573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.152e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5422.050095434704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.960310476141085, dt = 0.0017397870566702573 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 410.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 221.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0878077872387166e-16,0)
sum a = (0,8.326672684688674e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.74e-03 |
+-----------+-----------+
Info: cfl dt = 0.001744807126627142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.149e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5451.134315898934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.962050263197755, dt = 0.001744807126627142 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 243.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.0878077872387166e-16,0)
sum a = (-2.0816681711721685e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017498019013843125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.209e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5194.767984268179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.963795070324382, dt = 0.0017498019013843125 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 249.21 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0878077872387166e-16,0)
sum a = (-1.3877787807814457e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.75e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017547703129477724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.159e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5433.806454353467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.965544872225767, dt = 0.0017547703129477724 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 256.70 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.1%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.0878077872387166e-16,0)
sum a = (-1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.001759711290719496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.160e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5443.642674000473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.967299642538714, dt = 0.001759711290719496 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 224.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.0878077872387166e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.76e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017646237618756748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5642.96900097021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.969059353829434, dt = 0.0017646237618756748 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.04 us (96.7%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.122502256758253e-16,0)
sum a = (6.938893903907228e-18,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017695066517530288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.150e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5521.778074156088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9708239775913095, dt = 0.0017695066517530288 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 225.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0878077872387166e-16,0)
sum a = (-2.0816681711721685e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.77e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017743588842430366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.129e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5644.5143773317395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.972593484243062, dt = 0.0017743588842430366 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 236.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0878077872387166e-16,0)
sum a = (-1.3877787807814457e-17,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.001779179382193875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.143e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5586.64037921975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.974367843127306, dt = 0.001779179382193875 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (62.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,3.157196726277789e-16,0)
sum a = (-6.938893903907228e-18,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.78e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017839670678199075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.138e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5627.90522683938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.976147022509499, dt = 0.0017839670678199075 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 228.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,3.122502256758253e-16,0)
sum a = (0,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017887208631185178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5471.107517759166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.977930989577319, dt = 0.0017887208631185178 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 256.63 us (96.6%)
LB move op cnt : 0
LB apply : 1.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,3.157196726277789e-16,0)
sum a = (-2.0816681711721685e-17,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.79e-03 |
+-----------+-----------+
Info: cfl dt = 0.0017934396902940686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5364.673892350426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.979719710440438, dt = 0.0017934396902940686 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 242.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,3.122502256758253e-16,0)
sum a = (-6.938893903907228e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.001798122472188771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.131e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5708.440214406279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.981513150130732, dt = 0.001798122472188771 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 258.75 us (96.8%)
LB move op cnt : 0
LB apply : 1.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,3.157196726277789e-16,0)
sum a = (6.938893903907228e-18,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.80e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018027681327202362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5392.376730823184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.983311272602921, dt = 0.0018027681327202362 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 231.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.551115123125783e-17,3.157196726277789e-16,0)
sum a = (-1.3877787807814457e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018073755973254668 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.158e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5602.114207601177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.985114040735642, dt = 0.0018073755973254668 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 277.64 us (96.8%)
LB move op cnt : 0
LB apply : 1.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (0,1.249000902703301e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.81e-03 |
+-----------+-----------+
Info: cfl dt = 0.001811943793411029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.161e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5605.960243253283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.986921416332967, dt = 0.001811943793411029 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 230.93 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (-6.938893903907228e-18,-1.1102230246251565e-16,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018164716508091395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.126e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5794.799919229631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.988733360126378, dt = 0.0018164716508091395 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 235.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.122502256758253e-16,0)
sum a = (-2.0816681711721685e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.82e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018209581022394013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.170e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5591.504398363841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.990549831777187, dt = 0.0018209581022394013 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.157196726277789e-16,0)
sum a = (-1.3877787807814457e-17,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018254020837759016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.142e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5742.565982916133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.992370789879427, dt = 0.0018254020837759016 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 227.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.157196726277789e-16,0)
sum a = (-6.938893903907228e-18,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018298025353193654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.182e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5557.912192145741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.994196191963203, dt = 0.0018298025353193654 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 277.23 us (96.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.191891195797325e-16,0)
sum a = (-1.3877787807814457e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.83e-03 |
+-----------+-----------+
Info: cfl dt = 0.001834158401074068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.207e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5457.408997867267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.996025994498522, dt = 0.001834158401074068 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 381.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 229.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.157196726277789e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018384686300291955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5853.499832334233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.997860152899596, dt = 0.0018384686300291955 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 261.62 us (96.7%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.191891195797325e-16,0)
sum a = (6.938893903907228e-18,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.84e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018427321764443133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.190e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5562.670043221491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.9996986215296255, dt = 0.0018427321764443133 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 228.19 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.157196726277789e-16,0)
sum a = (-2.0816681711721685e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018469480003386214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.135e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5845.402148066209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.00154135370607, dt = 0.0018469480003386214 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (1.2%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 231.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.191891195797325e-16,0)
sum a = (-6.938893903907228e-18,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.85e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018511150679836417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.151e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5776.571440055947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.003388301706408, dt = 0.0018511150679836417 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 223.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.191891195797325e-16,0)
sum a = (-2.7755575615628914e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.001855232352398994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5731.977506286419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.005239416774392, dt = 0.001855232352398994 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 228.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (-6.938893903907228e-18,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018592988338508923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.145e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5834.986548918354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.007094649126792, dt = 0.0018592988338508923 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 229.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (-2.7755575615628914e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.86e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018633135003529944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5752.459684391954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.008953947960643, dt = 0.0018633135003529944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 230.60 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.2612801348363973e-16,0)
sum a = (0,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018672753481692255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.147e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5847.656467683926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.010817261460996, dt = 0.0018672753481692255 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (1.0%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 278.80 us (96.8%)
LB move op cnt : 0
LB apply : 1.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.226585665316861e-16,0)
sum a = (1.3877787807814457e-17,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.87e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018711833823181943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.193e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5633.042488296988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.012684536809166, dt = 0.0018711833823181943 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 227.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.191891195797325e-16,0)
sum a = (-2.0816681711721685e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018750366170787991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.123e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5998.130265832189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.014555720191485, dt = 0.0018750366170787991 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 400.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 262.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.191891195797325e-16,0)
sum a = (-1.3877787807814457e-17,-4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018788340764966448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.155e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5846.760543438138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.016430756808564, dt = 0.0018788340764966448 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 232.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.6%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.191891195797325e-16,0)
sum a = (-3.469446951953614e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.88e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018825747948908365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.165e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5803.507840101934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.01830959088506, dt = 0.0018825747948908365 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 400.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 227.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.174543961037557e-16,0)
sum a = (2.7755575615628914e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018862578173607688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.133e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5983.0335269689385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.020192165679951, dt = 0.0018862578173607688 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 235.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.209238430557093e-16,0)
sum a = (-3.469446951953614e-17,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.001889882200292468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.163e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5839.235010068472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.022078423497312, dt = 0.001889882200292468 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 225.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,3.174543961037557e-16,0)
sum a = (-6.938893903907228e-18,6.938893903907228e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.89e-03 |
+-----------+-----------+
Info: cfl dt = 0.0018934470118640845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.124e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6052.454244412771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.023968305697604, dt = 0.0018934470118640845 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.1%)
LB compute : 262.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.8%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.85722573273506e-17,3.1051550219984847e-16,0)
sum a = (-6.591949208711867e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.001896951332550095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.232e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5531.439299190786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.025861752709469, dt = 0.001896951332550095 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 248.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (67.7%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0704605524789486e-16,0)
sum a = (1.0408340855860843e-17,2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019003942556237953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5732.091620113988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.02775870404202, dt = 0.0019003942556237953 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.0%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.1%)
LB compute : 263.41 us (96.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.0878077872387166e-16,0)
sum a = (3.469446951953614e-18,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.90e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019037748876576431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.175e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5821.810684249025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.029659098297644, dt = 0.0019037748876576431 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 233.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245004513516506e-17,3.1051550219984847e-16,0)
sum a = (-3.469446951953614e-18,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019070923490210122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5968.273769431373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.031562873185303, dt = 0.0019070923490210122 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 380.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.1%)
LB compute : 260.78 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.122502256758253e-16,0)
sum a = (-3.469446951953614e-18,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.001910345774374932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.144e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6000.295802107538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.033469965534325, dt = 0.001910345774374932 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 233.28 us (96.5%)
LB move op cnt : 0
LB apply : 1.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.157196726277789e-16,0)
sum a = (-1.3877787807814457e-17,-5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.91e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019135343131633474 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.250e-03 | 0.5% | 0.9% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5501.465742255268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.0353803113087, dt = 0.0019135343131633474 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 701.00 ns (0.3%)
gen split merge : 411.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 230.23 us (96.2%)
LB move op cnt : 0
LB apply : 1.63 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.157196726277789e-16,0)
sum a = (-3.469446951953614e-18,-2.7755575615628914e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019166571301004924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.174e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5866.113322451663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.037293845621862, dt = 0.0019166571301004924 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 261.00 us (96.8%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.938893903907228e-17,3.174543961037557e-16,0)
sum a = (-2.0816681711721685e-17,1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019197134056538874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.164e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5928.080571058942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.039210502751963, dt = 0.0019197134056538874 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 225.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.122502256758253e-16,0)
sum a = (0,4.163336342344337e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.92e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019227023365225703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.156e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5978.604836155539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.041130216157617, dt = 0.0019227023365225703 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (1.1%)
patch tree reduce : 461.00 ns (0.2%)
gen split merge : 391.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 234.14 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.5%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.632783294297951e-17,3.1051550219984847e-16,0)
sum a = (-4.85722573273506e-17,0,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.001925623136110071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.148e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6026.823474258961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.043052918494139, dt = 0.001925623136110071 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (1.2%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 401.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 222.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.4%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.1051550219984847e-16,0)
sum a = (-3.469446951953614e-18,9.71445146547012e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019284750349917237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.128e-03 | 0.5% | 0.4% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6147.251560254833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.044978541630249, dt = 0.0019284750349917237 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 401.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.1%)
LB compute : 259.49 us (96.8%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.0%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.157196726277789e-16,0)
sum a = (-2.42861286636753e-17,5.551115123125783e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019312572813758484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.191e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5827.450737208339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.04690701666524, dt = 0.0019312572813758484 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (1.1%)
patch tree reduce : 451.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 227.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.3%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.139849491518021e-16,0)
sum a = (3.8163916471489756e-17,-1.3877787807814457e-17,0)
sum e = 0
sum de = 0
Info: CFL detail : [sph::Model][rank=0]
+===========+===========+
| key | value |
+===========+===========+
| courant | 1.80e+308 |
| force | 1.80e+308 |
| sink_sink | 1.93e-03 |
+-----------+-----------+
Info: cfl dt = 0.0019339691415583944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 0.0000e+00 | 0 | 1 | 1.200e-03 | 0.5% | 0.3% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5795.694082664962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.048838273946616, dt = 0.0019339691415583944 ----------------
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 259.36 us (96.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.2%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.122502256758